powershell 修改远程桌面端口

#requires –runasadministrator
function Set-RegistryValue($key, $name, $value, $type="String") { 
  if ((Test-Path $key) -eq $false) { md $key | Out-Null } 
       Set-ItemProperty $key $name $value -type $type 
  } 
 #修改注册表,更改远程端口
 Set-RegistryValue "HKLM:\SYstem\CurrentControlSet\Control\Terminal Server\Wds\rdpwd\Tds\tcp" PortNumber 3389 Dword
 Set-RegistryValue "HKLM:\SYstem\CurrentControlSet\Control\Terminal Server\WinStations\RDP-Tcp" PortNumber 3389 Dword
 #防火墙设置
 New-NetFirewallRule -displayName "新远程桌面端口"  -name "remote desktop tcp in" -Direction Inbound -LocalPort 3389 -Protocol TCP -Action Allow
 New-NetFirewallRule -displayName "新远程桌面端口" -name "remote desktop udp in" -Direction Inbound -LocalPort 3389 -Protocol UDP -Action Allow
 New-NetFirewallRule -displayName "新远程桌面端口" -name "remote desktop tcp out" -Direction Outbound -LocalPort 3389 -Protocol TCP -Action Allow
 New-NetFirewallRule -displayName "新远程桌面端口" -name "remote desktop udp out" -Direction Outbound -LocalPort 3389 -Protocol UDP -Action Allow

修改3389端口后以管理员运行。

相关文章

今天小编给大家分享一下excel图案样式如何设置的相关知识点,...
这篇文章主要讲解了“win10设置过的壁纸如何删除”,文中的讲...
这篇“Xmanager怎么显示远程linux程序的图像”文章的知识点大...
今天小编给大家分享一下xmanager怎么连接linux的相关知识点,...
这篇“如何重置Linux云服务器的远程密码”文章的知识点大部分...
本篇内容介绍了“Linux云服务器手动配置DNS的方法是什么”的...