If you have ever needed to change the default Remote Desktop Port, you probably have consulted this article for modifying the necessary Registry Key for Remote Desktop: https://support.microsoft.com/en-us/kb/306759
However, manually modifying the Registry is time consuming and tedious (especially if you have to do this for a lot of servers), so I created a very convenient PowerShell script to make this process that much easier!!
However, manually modifying the Registry is time consuming and tedious (especially if you have to do this for a lot of servers), so I created a very convenient PowerShell script to make this process that much easier!!
This file contains 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
Param( | |
[Parameter(Mandatory=$true)] | |
[string]$PortNumber = "3390" | |
) | |
$TSRegKey = "HKLM:\System\CurrentControlSet\Control\Terminal Server\WinStations\RDP-Tcp" | |
$PortNumberRegKey = "PortNumber" | |
Clear-Host | |
Write-Host $TSRegKey | |
Set-ItemProperty -Path $TSRegKey -Name $PortNumberRegKey -Value $PortNumber -Type "DWORD" |
No comments:
Post a Comment