Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Printout of login names and dates?

Status
Not open for further replies.

olson5000

MIS
Jun 5, 2002
14
US
Is there a way to print out a list of login names and the date they last logged in from Novell 5.1?
 
Try this....

From a DOS Prompt, make sure you are mapped to the SYS:\LOGIN directory and type...

NLIST USER SHOW "Last login time"

This command will provide information for all Users in your cuurent context. To verify your current context, type CX at the DOS Prompt.

Good Luck!
 
And to pipe it to a file:

NLIST USER SHOW "Last login time" > file.txt -----------------------------------------------------
"It's true, its damn true!"
-----------------------------------------------------
 
It only seems to work for the current context you are in. Is there a way to show it for all subcontexts? ========================================
I learnt the most
when I stopped talking...
 
Use the CX command in a DOS box to change your current context to a higher OU. For example, to change your context to TREE.TOPOU:

CX .TREE.TOPOU

If you now do the nlist command like so:

NLIST USER SHOW "Last login time" /S > file.txt

you will get results for all sub-containers as well. -----------------------------------------------------
"It's true, its damn true!"
-----------------------------------------------------
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top