-
-
Save x0341/671bf8e1cad08b126ea530260ed77235 to your computer and use it in GitHub Desktop.
Remote Desktop Auto Login Powershell Script
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
echo "Connecting to 192.168.1.100" | |
$Server="192.168.1.100" | |
$User="Administrator" | |
$Password="AdminPassword" | |
cmdkey /generic:TERMSRV/$Server /user:$User /pass:$Password | |
mstsc /v:$Server |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# https://technet.microsoft.com/library/hh847748.aspx | |
# Run PowerShell as Administrator | |
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
c:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe -nolog -command cmdkey /generic:TERMSRC/some_unc_path /user:username /pass:pa$$word; mstsc /v:some_unc_path |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Write-Output "Connecting to somethingspecial.cloudapp.net" | |
$Server = "somethingspecial.cloudapp.net" | |
$Port = "49982" | |
$User = "Administrator" | |
$Password = "AdminPassword" | |
cmdkey /add:$Server /user:$User /pass:$Password | |
mstsc /v: { $Server }: { $Port} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment