Windows 修改默认远程桌面端口

1、在PowerShell 命令来查看当前远程桌面端口<必须使用管理员权限>
Get-ItemProperty -Path ‘HKLM:\SYSTEM\CurrentControlSet\Control\Terminal Server\WinStations\RDP-Tcp’ -name “PortNumber”

示例如下:
PortNumber : 3389
PSPath : Microsoft.PowerShell.Core\Registry::HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Terminal Server\
WinStations\RDP-Tcp
PSParentPath : Microsoft.PowerShell.Core\Registry::HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Terminal Server\
WinStations
PSChildName : RDP-Tcp
PSDrive : HKLM
PSProvider : Microsoft.PowerShell.Core\Registry

2、通琮PowerShell 命令来更改 RDP 端口;在此命令中,我们会将新的 RDP 端口指定为 55555。
$portvalue = 55555
Set-ItemProperty -Path ‘HKLM:\SYSTEM\CurrentControlSet\Control\Terminal Server\WinStations\RDP-Tcp’ -name “PortNumber” -Value $portvalue
New-NetFirewallRule -DisplayName ‘RDPPORTLatest-TCP-In’ -Profile ‘Public’ -Direction Inbound -Action Allow -Protocol TCP -LocalPort $portvalue
New-NetFirewallRule -DisplayName ‘RDPPORTLatest-UDP-In’ -Profile ‘Public’ -Direction Inbound -Action Allow -Protocol UDP -LocalPort $portvalue

示例如下:
PS C:\Windows\system32> Get-ItemProperty -Path ‘HKLM:\SYSTEM\CurrentControlSet\Control\Terminal Server\WinStations\RDP-Tcp’ -name “PortNumber”
PortNumber : 55555
PSPath : Microsoft.PowerShell.Core\Registry::HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Terminal Server\WinStations\RDP-Tcp
PSParentPath : Microsoft.PowerShell.Core\Registry::HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Terminal Server\WinStations
PSChildName : RDP-Tcp
PSDrive : HKLM
PSProvider : Microsoft.PowerShell.Core\Registry

测试本地的互联网外网IP

1、使用命令
curl cip.cc

2、示例
C:\Users\uki>curl cip.cc
IP : 222.83.157.108
地址 : 中国 江西 南昌
运营商 : 移动

数据二 : 江西省吉安市 | 移动

数据三 : 中国江西省南昌市 | 移动

URL : http://www.cip.cc/222.83.157.108

Windows 开机自动登录

1、在命令提示符下或运行中输入(任意一个命令即可)
netplwiz

或 control userpasswords2

或 rundll32 netplwiz.dll,UsersRunDll <注意区分大小写>

2、按提示操作即可