我上传了一个超视距VHD文件到存储。然后,我从磁盘创建了一个Windows,并指定它包含操作系统。Azure说,机器正在运行,远程桌面和powershell端点都配置好了。但是,当我单击connect时,会得到标准的rdp错误。
我调整了VM的大小,并重新启动了VM几次,但都没有效果。
单击“重置远程连接”在Azure预览门户中失败。此按钮现在已被禁用。
当我运行(Get XXXXXX -Name XXXXXX).GuestAgentStatus时,它返回:
ProtocolVersion : 1.0
TimestampUtc : 10/13/2015 2:02:29 PM
GuestAgentVersion : Unknown
Status : NotReady
Code :
Message :
FormattedMessage : Microsoft.WindowsAzure.Commands.ServiceManagement.Model.GuestAgentFormattedMessage
ExtensionData :发布于 2015-10-22 15:09:32
我在微软的支持下解决了这个问题。对于那些发布了类似的未回答问题的人,您需要编辑VM的注册表,以禁用防火墙并更改VM的RDP安全设置。
在EnableFirewall、PublicProfile和StandardProfile子项中设置StandardProfile=0
将值设置为: fAllowSecProtocolNegotiation、SecurityLayer和UserAuthentication为0
原始信息摘自:http://social.technet.microsoft.com/wiki/contents/articles/18710.troubleshoot-azure-vm-by-attaching-os-disk-to-another-azure-vm.aspx
和
http://www.technlg.net/windows/disable-enable-firewall-registry-key/
https://stackoverflow.com/questions/33109611
复制相似问题