我已在Windows Azure虚拟机中禁用了远程桌面防火墙规则。正如您所料,我无法再将远程桌面插入服务器。
有谁知道是否可以重新启用远程桌面Windows防火墙规则?
我尝试了什么
作为一个长镜头,我已经下载了Windows Azure CLI但是看不到任何可以执行此操作但没有找到任何内容的内容。
我还尝试对MSSQL服务器执行以下命令:
EXEC xp_cmdshell 'netsh advfirewall firewall set rule group="remote desktop" new enable=Yes';
GO
我从查询中收到以下消息:
The requested operation requires elevation (Run as administrator).
请告诉我,我不必重新创建网站(已备份)。
答案 0 :(得分:3)
事实证明,我需要做的就是将PowerShell引入Azure VM。
步骤:
https://yourdomaing.cloudapp.net:12345
(其中:12345是PowerShell使用的端口)。Enter-PSSession -ComputerName yourdomain.cloudapp.net -Port 5986 -Credential YourUserName -UseSSL
netsh advfirewall firewall set rule group="remote desktop" new enable=Yes
并退出PowerShell会话,并能够远程连接到我的机器。答案 1 :(得分:1)