"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