List user account

  • Thread starter Thread starter azwan
  • Start date Start date
A

azwan

Hi all,
I wanted to know wether there are any possible way for me
to list all the user account.This include when they log-in
and log-out,date,time,etc.. Thanks for any help...
 
I wanted to know wether there are any possible way for me
to list all the user account.This include when they log-in
and log-out,date,time,etc.. Thanks for any help...

for /F "tokens=1,2,3 skip=4" %a in ('net user') do net user %a
Ciao, Walter
 
sorry..but im not a very technical person...so can u
elobarate more on how do i manage to do that?thanks..
 
For account listing, at a cmd prompt enter
net users

To get at login times you need to use the security event log,
if it is set to log the actions in which you have interest.
 
Back
Top