Follow these steps to start recording information about user logins on your RDSH servers:
- Log into RDS1 and create a new batch file. We are going to utilize good old batch file scripts, but you could also create something with PowerShell to accomplish the same function. I find, however, that a single line of code inside a batch file does the trick quite well. I have created the following script on mine: C:\Reporting\Logon.bat
- Now right-click on that script, and choose Edit in order to open it up in Notepad.
- Input the following text:
Echo %date%,%time%,%username%,%computername% >> C:\Reporting\Logons.txt
- Now you need ...