我刚使用资源管理器模型在Azure中创建了一个VM。我无法对它进行RDP。机器正在运行。我收到的错误是:
Your credentials did not work
我尝试过以下用户名:
myCompanyDomain\user
user
.\user
\user
NameOfVM\user
我检查过,双重检查,并检查密码。我已阅读并遵循了本文中的所有步骤:https://azure.microsoft.com/en-us/documentation/articles/virtual-machines-troubleshoot-remote-desktop-connections/#wincred
仍然无法连接。我错过了什么?
答案 0 :(得分:0)
嗯,这个问题的根源仍然是个谜。如果我们弄明白,我会发布解决方案。无论出于什么奇怪的原因,当我创建一个虚拟机时,没有人(我的同事和我都没有)可以访问它。当其他人使用相同步骤创建VM时,我们都可以访问它。但是,我们找到了一个解决方案。 This article帮了解,但并没有把我们带到那里。
这是围绕脚本的工作:
Login-AzureRmAccount
Get-AzureRmSubscription -SubscriptionName <Your Subscription Name>
复制上面返回的租户ID
Login-AzureRmAccount -TenantId <TenantId>
$vm = Get-AzureRmVM -ResourceGroupName <Your Resource Group Name> -Name <Your VM Name>
$cred = Get-Credential (this is the VM user credentials)
Set-AzureRmVMAccessExtension -ResourceGroupName <Your Resource Group Name> -VMName <Your VM Name> -Name VMAccessAgent -TypeHandlerVersion "2.0" -UserName $cred.UserName -Password $cred.GetNetworkCredential().Password -Location <Location of VM>
Update-AzureRmVM -ResourceGroupName <Your Resource Group Name> -VM $vm