Windows Vista Tips

Windows Vista Tips > Newsgroups > Windows Server > Scripting > I need user usage information from Windows Server 2003

Reply
Thread Tools Display Modes

I need user usage information from Windows Server 2003

 
 
allen1000
Guest
Posts: n/a

 
      07-30-2009
Is there a "cmd" to get user usage information which could be "piped" to a
file to get information on when a user last logged into the server ? Thanks
in advance for any assistance provided.
 
Reply With Quote
 
 
 
 
Pegasus [MVP]
Guest
Posts: n/a

 
      07-30-2009

"allen1000" <> wrote in message
news:6BAC8536-5A18-41CA-A977-...
> Is there a "cmd" to get user usage information which could be "piped" to a
> file to get information on when a user last logged into the server ?
> Thanks
> in advance for any assistance provided.


You need to collect this information yourself, e.g. by inserting the
following lines into your logon script:

@echo off
echo %date% %time% %ComputerName% %UserName% >>
\\YourServer\SomeShare\SomeFolder\logon.txt


 
Reply With Quote
 
Al Dunbar
Guest
Posts: n/a

 
      07-30-2009

"Pegasus [MVP]" <> wrote in message
news:...
>
> "allen1000" <> wrote in message
> news:6BAC8536-5A18-41CA-A977-...
>> Is there a "cmd" to get user usage information which could be "piped" to
>> a
>> file to get information on when a user last logged into the server ?
>> Thanks
>> in advance for any assistance provided.

>
> You need to collect this information yourself, e.g. by inserting the
> following lines into your logon script:
>
> @echo off
> echo %date% %time% %ComputerName% %UserName% >>
> \\YourServer\SomeShare\SomeFolder\logon.txt


Or in vbscript:

http://www.rlmueller.net/Logon5.htm

We use this technique, but the log file has the date embedded in the name to
avoid performance issues that would result from appending to a huge log
file.

/Al


 
Reply With Quote
 
jford
Guest
Posts: n/a

 
      07-31-2009
Or there is a utility

www.OptimumX.com

:/>netusers /h

If they are logging in with their own ID's it will show their last logon to
a system.

-J

"Al Dunbar" wrote:

>
> "Pegasus [MVP]" <> wrote in message
> news:...
> >
> > "allen1000" <> wrote in message
> > news:6BAC8536-5A18-41CA-A977-...
> >> Is there a "cmd" to get user usage information which could be "piped" to
> >> a
> >> file to get information on when a user last logged into the server ?
> >> Thanks
> >> in advance for any assistance provided.

> >
> > You need to collect this information yourself, e.g. by inserting the
> > following lines into your logon script:
> >
> > @echo off
> > echo %date% %time% %ComputerName% %UserName% >>
> > \\YourServer\SomeShare\SomeFolder\logon.txt

>
> Or in vbscript:
>
> http://www.rlmueller.net/Logon5.htm
>
> We use this technique, but the log file has the date embedded in the name to
> avoid performance issues that would result from appending to a huge log
> file.
>
> /Al
>
>
>

 
Reply With Quote
 
 
 
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Windows 2003 print server not showing owner information Cyborg Windows Server 0 11-12-2007 03:08 PM
Windows server 2003 clustering information Burton Hallman Windows Server 2 09-25-2006 08:01 AM
Windows 2003 Terminal Server effect on memory usage. FinancialExpress Windows Server 1 12-07-2005 04:49 PM
Windows 2003 Standard Edition - Non-Admin user - usage Saravanan Windows Server 1 07-15-2005 12:15 PM
System Information on Windows 2003 server Patrick B. Windows Server 1 12-03-2004 10:08 PM



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59