即將發生的維護作業可能會影響我們的服務。 了解更多

Windows如何開啟遠端桌面 列印

  • 0

使用 powershell(以系統管理員身分執行)複製以下開啟RDP指令

Enable Remote Desktop


(Get-WmiObject Win32_TerminalServiceSetting -Namespace root\cimv2\TerminalServices).SetAllowTsConnections(1,1) | Out-Null
(Get-WmiObject -Class "Win32_TSGeneralSetting" -Namespace root\cimv2\TerminalServices -Filter "TerminalName='RDP-tcp'").SetUserAuthenticationRequired(0) | Out-Null
Get-NetFirewallRule -DisplayName "Remote Desktop*" | Set-NetFirewallRule -enabled true


這篇文章有幫助嗎?

« 返回