Run mstsc.exe with specified username and password

Process rdcProcess = new Process(); rdcProcess.StartInfo.FileName = Environment.ExpandEnvironmentVariables(@”%SystemRoot%\system32\cmdkey.exe”); rdcProcess.StartInfo.Arguments = “/generic:TERMSRV/192.168.0.217 /user:” + “username” + ” /pass:” + “password”; rdcProcess.Start(); rdcProcess.StartInfo.FileName = Environment.ExpandEnvironmentVariables(@”%SystemRoot%\system32\mstsc.exe”); rdcProcess.StartInfo.Arguments = “/v ” + “192.168.0.217”; // ip or name of computer to connect rdcProcess.Start(); The above code initiates a connection with .217 and I am not being prompted to provide a … Read more

Powershell Log Off Remote Session

Perhaps surprisingly you can logoff users with the logoff command. C:\> logoff /? Terminates a session. LOGOFF [sessionname | sessionid] [/SERVER:servername] [/V] [/VM] sessionname The name of the session. sessionid The ID of the session. /SERVER:servername Specifies the Remote Desktop server containing the user session to log off (default is current). /V Displays information about … Read more