Article
Problem
Getting a list of the FIDs associated with users ...
Solution
Another way to get a FID list is to use the gwcheck.log file generated by using the Audit feature, and then the DOS Find command to search for lines containing the phrase \user. For example,
find /I "\user" gwcheck.log | more
will find those lines, and the "more" option will display them one page at a time. This can also be done with the grep command in Linux.
Here is a sample result:
Audit report for user (Larry) on database GW001\GWPO:\po05\ofuser\userxxo.db Audit report for user (Moe) on database GW001\GWPO:\po05\ofuser\useryir.db Audit report for user (Curly) on database GW001\GWPO:\po05\ofuser\useryx4.db
Disclaimer: As with everything else at Cool Solutions, this content is definitely not supported by Novell (so don't even think of calling Support if you try something and it blows up).
It was contributed by a community member and is published "as is." It seems to have worked for at least one person, and might work for you. But please be sure to test, test, test before you do anything drastic with it.
Related Articles
User Comments
- Be the first to comment! To leave a comment you need to Login or Register
- 3639 reads


0