I was looking for this information, and found it in this thread, now I have made this: QUICKGUIDE to connect or find the computer a user is logged on to: 1) Create a share with read/write-permissions for authenticated users 2) add following 2 lines to logon.bat (or whatever you call your logonfile) del \\Server\AdminLogPath$\RemoteUser\%username%@*.* echo mstsc /v:%computername% >> \\Server\AdminLogPath$\RemoteUser\%username%@%computername%-RemoteDesktop.bat OR you can change line 2 to whatever you like, or even add more lines like: del \\Server\AdminLogPath$\RemoteUser\%username%@*.* echo %username%´s last logon was at %computername %date% %time% etc.etc.>> \\Server\AdminLogPath$\RemoteUser\%username%@%computername%-lastlogon.log echo vncviewer %computername% >> \\Server\AdminLogPath$\RemoteUser\%username%@%computername%-VNC-viewer.bat echo mstsc /v:%computername% >> \\Server\AdminLogPath$\RemoteUser\%username%@%computername%-RemoteDesktop.bat echo \\%computername% >> \\Server\AdminLogPath$\RemoteUser\%username%@%computername%-Browser.bat 3) create a shortcut to \\Server\AdminLogPath$\RemoteUser\ at your desktop 4) Whenever you need access to a users computer, just open the shortcut and sort or search in the folder after your needs. example: doubleclick JohnDoe@PC123456-VNC-viewer.bat to give som remotesupport (of course you need VNC-viewer on both sides first) ENJOY!