I want to automate the RDP connection by making a bat file. But it still keeps on asking me the password.
I created two files 1.hello.cmd 2.hello1.bat
In hello.cmd I had put
cmdkey /generic:"ipaddress" /user:"username" /pass:"password" rem cmdkey /generic:TERMSRV:"ipaddress" /user:"username" /pass:"password" and in hello1.bat I created
mstsc /v:ipaddress How do i correct this and make it automate
Please help!!!
1 Answer
This functionality was removed from the mstsc.exe application. I think you may do either of:
Save from RDP the connection details as an
.rdpfile and launch it directly or viamstsc.Use PowerShell, for example the script Connect-Mstsc.ps1. You will find some more information on this post, google for details on individual commands.