Terminal Services Log

  • Thread starter Thread starter Jerry
  • Start date Start date
J

Jerry

Does Server 2000 create a log of terminal service
sessions. If so, where do I find it. Thanks.
 
No, it does not. However, you can write some pretty
easily by appending the following to your logon script:

echo %username% %time% %date% %clientname% >> logon.log

This will create a file called logon.log that will keep
track of who, when, and what's the user's client's name
was.

-M
 
Put the command line as given above in the logon script. If you use the
default it will be at winnt\system32\usrlogon.cmd

You can add it right below @Echo Off.

You may want to put a full path to the log file. If you run more than one
server you can have it log to a central location. In this case the line
would look like this

echo %username% %time% %date% %clientname% %computername% >>
\\servername\r$\logs\logon.log

There are no line breaks, just watch that.

dw

--
Don Wilwol
Collective Technologies
Professional Services Consultant
http://www.collectivetech.com


Wim said:
http://www.microsoft.com/windows2000/community/newsgroups/terminal/default.mspx
Can you please inform me about the script? I don't really understand how
i have to create this particular script
 
Back
Top