我尝试连接到我创建的新VM时有点乐趣,我发现有大量帖子来自同样问题的人,答案详细说明了我发现的点
答案 0 :(得分:2)
(1)对我而言,它与
一起使用<VMName>\Username
Password
e.g。
Windows8VM\MyUserName
SomePassword@1
(2)有些人只需要使用领先的'\',即
\Username
Password
Your credentials did not work Azure VM
(3)您现在可以从应用门户重置用户名/密码。有PowerShell脚本也可以让你这样做但不再需要了。
(4)您也可以尝试重新部署VM,您可以从应用程序门户
执行此操作(5)这个博客说“密码不能包含用户名或用户名的一部分”,但是一旦我尝试了,一旦我运行它并且工作正常,那必须是过时的
(6)您可能会发现下面提到Get-AzureVM的链接,它似乎适用于经典虚拟机,似乎有资源管理器虚拟机的等价物,例如Get-AzureRMVM
https://blogs.msdn.microsoft.com/mast/2014/03/06/enable-rdp-or-reset-password-with-the-vm-agent/
对于PowerShell的完整新手,如果你想沿着这条路走下去,那么你可能需要的基础知识。最后我不相信我需要这个,只需要点1
unInstall-Module AzureRM
Install-Module AzureRM -allowclobber
Import-Module AzureRM
Login-AzureRmAccount (this will open a window which takes you through the usual logon process)
Add-AzureAccount (not sure why you need both, but I couldn’t log on without this)
Select-AzureSubscription -SubscriptionId <the guid for your subscription>
Set-AzureRmVMAccessExtension -ResourceGroupName "<your RG name>" -VMName "Windows8VM" -Name "myVMAccess" -Location "northeurope" -username <username> -password <password>
(7)您可以按照设置的比例连接到VM,默认情况下,Load Balancer将具有从端口向前50000的Nat Rules映射,即只有远程桌面到IP地址:端口。您也可以从不在比例集中的VM执行此操作。转到比例集的概述,单击“虚拟网络/子网”,它将为您提供内部IP地址。远程桌面来自另一个
答案 1 :(得分:0)
遇到了类似的问题。默认情况下似乎需要域。以下是对我有用的方法:
本地主机\用户名
其他选项可以是 vmname\username
https://docs.microsoft.com/en-us/azure/virtual-machines/windows/connect-logon