2014-06-17 127 views
1

我是Microsoft Azure新预览门户用户。我正在考虑运行Microsoft Windows Server 2012 R2 Datacenter。我将使用我的虚拟机来支持Boinc Grid Project。Azure旧门户虚拟机远程连接登录失败

我已将Microsoft Windows Server添加到我的Microsoft Azure。但是,我无法连接到我的Microsoft Azure的远程桌面。它会导致登录失败。我尝试了我的Microsoft Azure密码和Windows Server帐户的密码。但是,它没有改变...

我没有尝试在Microsoft PowerShell上进行连接。我已经记录了我的协议,私人端口和网站名称。如果他们需要,我可以给他们。

你能帮我连接远程桌面吗?

顺便说一句,我的虚拟机网站是;

boincgrid.cloudapp.net

等待你的帮助,有一个很好的和Ideaflow天。

使用的指令由@汤姆凡Gramberen

我采纳了你的指示后,在2019年6月22日编辑。但是,我一步一步堆积起来;

我完成了http://blogs.technet.com/b/keithmayer/archive/2014/04/03/microsoft-azure-virtual-machines-reset-forgotten-admin-password-with-windows-powershell.aspx中的所有指令。但是,连接到我的Microsoft Azure虚拟机后,我无法Get-AzureVM ...

我在PowerShell中的输出是;

PS C:\> Get-Module Azure 

PS C:\> Set-ExecutionPolicy RemoteSigned 

PS C:\> Import-Module Azure 

PS C:\> Add-AzureAccount 

PS C:\> Get-AzureSubsription | Format-Table -Property SubsriptionName 
Get-AzureSubsription : The term 'Get-AzureSubsription' is not recognized as the name of a cm 
dlet, function, script file, or operable program. Check the spelling of the name, or if a pa 
th was included, verify that the path is correct and try again. 
At line:1 char:1 
+ Get-AzureSubsription | Format-Table -Property SubsriptionName 
+ ~~~~~~~~~~~~~~~~~~~~ 
    + CategoryInfo   : ObjectNotFound: (Get-AzureSubsription:String) [], CommandNotF 
    oundException 
    + FullyQualifiedErrorId : CommandNotFoundException 


PS C:\> Get-AzureSubscription | Format-Table -Property SubscriptionName 

SubscriptionName                    
----------------                    
Pay-As-You-Go                    
Pay-As-You-Go                    
Pay-As-You-Go                    
Pay-As-You-Go                    
Pay-As-You-Go                    
Pay-As-You-Go                    
Pay-As-You-Go                    



PS C:\> $subsription = "Pay-As-You-Go" 

PS C:\> Select-AzureSubscription -Default $subscription 
Select-AzureSubscription : Cannot validate argument on parameter 'SubscriptionName'. The arg 
ument is null or empty. Provide an argument that is not null or empty, and then try the comm 
and again. 
At line:1 char:35 
+ Select-AzureSubscription -Default $subscription 
+         ~~~~~~~~~~~~~ 
    + CategoryInfo   : InvalidData: (:) [Select-AzureSubscription], ParameterBinding 
    ValidationException 
    + FullyQualifiedErrorId : ParameterArgumentValidationError,Microsoft.WindowsAzure.Comma 
    nds.Profile.SelectAzureSubscriptionCommand 


PS C:\> Select-AzureSubscription -Default $subscription 
Select-AzureSubscription : Cannot validate argument on parameter 'SubscriptionName'. The arg 
ument is null or empty. Provide an argument that is not null or empty, and then try the comm 
and again. 
At line:1 char:35 
+ Select-AzureSubscription -Default $subscription 
+         ~~~~~~~~~~~~~ 
    + CategoryInfo   : InvalidData: (:) [Select-AzureSubscription], ParameterBinding 
    ValidationException 
    + FullyQualifiedErrorId : ParameterArgumentValidationError,Microsoft.WindowsAzure.Comma 
    nds.Profile.SelectAzureSubscriptionCommand 


PS C:\> $subscription = “ENTER YOUR SUBSCRIPTION NAME HERE” 

Select-AzureSubscription –Default $subscription 
Select-AzureSubscription : The subscription named 'ENTER YOUR SUBSCRIPTION NAME HERE' cannot 
be found. Use Set-AzureSubscription to initialize the subscription data. 
At line:3 char:1 
+ Select-AzureSubscription –Default $subscription 
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
    + CategoryInfo   : CloseError: (:) [Select-AzureSubscription], Exception 
    + FullyQualifiedErrorId : Microsoft.WindowsAzure.Commands.Profile.SelectAzureSubscripti 
    onCommand 


PS C:\> $subscription = “Pay-As-You-Go” 

Select-AzureSubscription –Default $subscription 

PS C:\> $adminCredentials = Get-Credential -Message "Message new Admin credentals" 

PS C:\> 
Get-AzureVM | 
Where-Object -Property Status -EQ "ReadyRole" | 
Out-GridView -Title "Select a VM …" -PassThru | 
ForEach-Object { 
    $VM = Get-AzureVM -Name $_.Name -ServiceName $_.ServiceName 
    If ($VM.VM.ProvisionGuestAgent) { 
     Set-AzureVMAccessExtension -VM $VM ` 
      -UserName $adminCredentials.UserName ` 
      -Password $adminCredentials.GetNetworkCredential().Password ` 
      -ReferenceName "VMAccessAgent" | 
     Update-AzureVM 
     Restart-AzureVM -ServiceName $VM.ServiceName -Name $VM.Name 
    } else { 
     Write-Output "$($VM.Name): VM Agent Not Installed" 
    } 
} 

PS C:\> Get-AzureVm -ServiceName "boincgrid" ' | Format-Table -auto "Name",@{Expression={$_.InstanceUpgradeDomain};Label="UpgDom";Align="Right"},"InstanceStatus" 
The string is missing the terminator: '. 
    + CategoryInfo   : ParserError: (:) [], ParentContainsErrorRecordException 
    + FullyQualifiedErrorId : TerminatorExpectedAtEndOfString 


PS C:\> Get-AzureVm -ServiceName "boincgrid" ' | Format-Table -auto "Name",@{Expression={$_.InstanceUpgradeDomain};Label="UpgDom";Align="Right"},"InstanceStatus"; 
The string is missing the terminator: '. 
    + CategoryInfo   : ParserError: (:) [], ParentContainsErrorRecordException 
    + FullyQualifiedErrorId : TerminatorExpectedAtEndOfString 


PS C:\> Get-AzureVm -ServiceName "boincgrid" ' | Format-Table -auto "Name",@{Expression={$_.InstanceUpgradeDomain};Label="UpgDom";Align="Right"},"InstanceStatus" 
The string is missing the terminator: '. 
    + CategoryInfo   : ParserError: (:) [], ParentContainsErrorRecordException 
    + FullyQualifiedErrorId : TerminatorExpectedAtEndOfString 


PS C:\> Get-AzureVm -ServiceName "boincgrid" ' | Format-Table -auto "Name",@{Expression={$_.InstanceUpgradeDomain};Label="UpgDom";Align="Right"},"InstanceStatus"; 
The string is missing the terminator: '. 
    + CategoryInfo   : ParserError: (:) [], ParentContainsErrorRecordException 
    + FullyQualifiedErrorId : TerminatorExpectedAtEndOfString 


PS C:\> Get-AzureVm -ServiceName "boincgrid" ' | Format-Table -auto "Name",@{Expression={$_.InstanceUpgradeDomain};Label="UpgDom";Align="Right"} 
The string is missing the terminator: '. 
    + CategoryInfo   : ParserError: (:) [], ParentContainsErrorRecordException 
    + FullyQualifiedErrorId : TerminatorExpectedAtEndOfString 


PS C:\> Get-AzureVm -ServiceName "boincgrid" | Format-Table -auto "Name",@{Expression={$_.InstanceUpgradeDomain};Label="UpgDom";Align="Right"},"InstanceStatus" 
WARNING: No deployment found in service: 'boincgrid'. 

PS C:\> Get-AzureVm -ServiceName "VIRTUAL MACHINES" -Name "BoincGrid" | Format-Table -auto "Name",@{Expression={$_.InstanceUpgradeDomain};Label="UpgDom";Align="Right"},"InstanceStatus" 
Get-AzureVm : BadRequest: The hosted service name is invalid. 
At line:1 char:1 
+ Get-AzureVm -ServiceName "VIRTUAL MACHINES" -Name "BoincGrid" | Format-Table -au ... 
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
    + CategoryInfo   : CloseError: (:) [Get-AzureVM], CloudException 
    + FullyQualifiedErrorId : Microsoft.WindowsAzure.Commands.ServiceManagement.IaaS.GetAzu 
    reVMCommand 


PS C:\> Get-AzureVm -ServiceName "VIRTUAL MACHINE" -Name "BoincGrid" | Format-Table -auto "Name",@{Expression={$_.InstanceUpgradeDomain};Label="UpgDom";Align="Right"},"InstanceStatus" 
Get-AzureVm : BadRequest: The hosted service name is invalid. 
At line:1 char:1 
+ Get-AzureVm -ServiceName "VIRTUAL MACHINE" -Name "BoincGrid" | Format-Table -aut ... 
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
    + CategoryInfo   : CloseError: (:) [Get-AzureVM], CloudException 
    + FullyQualifiedErrorId : Microsoft.WindowsAzure.Commands.ServiceManagement.IaaS.GetAzu 
    reVMCommand 


PS C:\> Get-AzureVm -ServiceName "Virtual Machine" -Name "BoincGrid" | Format-Table -auto "Name",@{Expression={$_.InstanceUpgradeDomain};Label="UpgDom";Align="Right"},"InstanceStatus" 
Get-AzureVm : BadRequest: The hosted service name is invalid. 
At line:1 char:1 
+ Get-AzureVm -ServiceName "Virtual Machine" -Name "BoincGrid" | Format-Table -aut ... 
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
    + CategoryInfo   : CloseError: (:) [Get-AzureVM], CloudException 
    + FullyQualifiedErrorId : Microsoft.WindowsAzure.Commands.ServiceManagement.IaaS.GetAzu 
    reVMCommand 


PS C:\> Get-AzureVm -ServiceName "VIRTUAL MACHINE" -Name "boincgrid" | Format-Table -auto "Name",@{Expression={$_.InstanceUpgradeDomain};Label="UpgDom";Align="Right"},"InstanceStatus" 
Get-AzureVm : BadRequest: The hosted service name is invalid. 
At line:1 char:1 
+ Get-AzureVm -ServiceName "VIRTUAL MACHINE" -Name "boincgrid" | Format-Table -aut ... 
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
    + CategoryInfo   : CloseError: (:) [Get-AzureVM], CloudException 
    + FullyQualifiedErrorId : Microsoft.WindowsAzure.Commands.ServiceManagement.IaaS.GetAzu 
    reVMCommand 


PS C:\> Get-AzureVm -ServiceName "Boincgrid" -Name "boincgrid" | Format-Table -auto "Name",@{Expression={$_.InstanceUpgradeDomain};Label="UpgDom";Align="Right"},"InstanceStatus" 
WARNING: No deployment found in service: 'Boincgrid'. 

PS C:\> Get-AzureVm -ServiceName "boincgrid" -Name "boincgrid" | Format-Table -auto "Name",@{Expression={$_.InstanceUpgradeDomain};Label="UpgDom";Align="Right"},"InstanceStatus" 
WARNING: No deployment found in service: 'boincgrid'. 

PS C:\> 

我的虚拟机和云服务名称是BoincGrid。

我已经编辑在的Microsoft Developer Network自己定的命令......

http://msdn.microsoft.com/en-us/library/dn495236.aspx

他们的榜样命令是:

Get-AzureVm -ServiceName "MySvc1" ' | Format-Table -auto "Name",@{Expression={$_.InstanceUpgradeDomain};Label="UpgDom";Align="Right"},"InstanceStatus" 

我的编辑命令;

Get-AzureVm -ServiceName "boincgrid" -Name "boincgrid" | Format-Table -auto "Name",@{Expression={$_.InstanceUpgradeDomain};Label="UpgDom";Align="Right"},"InstanceStatus" 

并且输出是;

警告:在服务中找不到部署:'boincgrid'。

我无法连接我的虚拟机...

等待你的帮助,有一个很好的和Ideaflow天。

+0

如果您可以登录到管理门户,那么您可以更改RDP密码。服务 - >配置 - >远程(在底部) - >给新的密码。 – sudhAnsu63

+0

sudhAnsu63,我找不到在哪里更改RDP服务的密码。 我正在使用旧门户,并且无法在Azure门户中找到服务部分。 我认为很难在旧门户中更改RDP的密码。 谢谢。 –

+0

@sarialp_mustafa,我在我的Azure虚拟机上安装了BOINC,但它永远不会连接抓取新单元。我错过了什么? – JoshYates1980

回答

0

我按照你的指示。但是,我一步一步堆积起来;

我完成了http://blogs.technet.com/b/keithmayer/archive/2014/04/03/microsoft-azure-virtual-machines-reset-forgotten-admin-password-with-windows-powershell.aspx中的所有指令。但是,连接到我的Microsoft Azure虚拟机后,我无法Get-AzureVM ...

我在PowerShell中的输出是;

PS C:\> Get-Module Azure 

PS C:\> Set-ExecutionPolicy RemoteSigned 

PS C:\> Import-Module Azure 

PS C:\> Add-AzureAccount 

PS C:\> Get-AzureSubsription | Format-Table -Property SubsriptionName 
Get-AzureSubsription : The term 'Get-AzureSubsription' is not recognized as the name of a cm 
dlet, function, script file, or operable program. Check the spelling of the name, or if a pa 
th was included, verify that the path is correct and try again. 
At line:1 char:1 
+ Get-AzureSubsription | Format-Table -Property SubsriptionName 
+ ~~~~~~~~~~~~~~~~~~~~ 
    + CategoryInfo   : ObjectNotFound: (Get-AzureSubsription:String) [], CommandNotF 
    oundException 
    + FullyQualifiedErrorId : CommandNotFoundException 


PS C:\> Get-AzureSubscription | Format-Table -Property SubscriptionName 

SubscriptionName                    
----------------                    
Pay-As-You-Go                    
Pay-As-You-Go                    
Pay-As-You-Go                    
Pay-As-You-Go                    
Pay-As-You-Go                    
Pay-As-You-Go                    
Pay-As-You-Go                    



PS C:\> $subsription = "Pay-As-You-Go" 

PS C:\> Select-AzureSubscription -Default $subscription 
Select-AzureSubscription : Cannot validate argument on parameter 'SubscriptionName'. The arg 
ument is null or empty. Provide an argument that is not null or empty, and then try the comm 
and again. 
At line:1 char:35 
+ Select-AzureSubscription -Default $subscription 
+         ~~~~~~~~~~~~~ 
    + CategoryInfo   : InvalidData: (:) [Select-AzureSubscription], ParameterBinding 
    ValidationException 
    + FullyQualifiedErrorId : ParameterArgumentValidationError,Microsoft.WindowsAzure.Comma 
    nds.Profile.SelectAzureSubscriptionCommand 


PS C:\> Select-AzureSubscription -Default $subscription 
Select-AzureSubscription : Cannot validate argument on parameter 'SubscriptionName'. The arg 
ument is null or empty. Provide an argument that is not null or empty, and then try the comm 
and again. 
At line:1 char:35 
+ Select-AzureSubscription -Default $subscription 
+         ~~~~~~~~~~~~~ 
    + CategoryInfo   : InvalidData: (:) [Select-AzureSubscription], ParameterBinding 
    ValidationException 
    + FullyQualifiedErrorId : ParameterArgumentValidationError,Microsoft.WindowsAzure.Comma 
    nds.Profile.SelectAzureSubscriptionCommand 


PS C:\> $subscription = “ENTER YOUR SUBSCRIPTION NAME HERE” 

Select-AzureSubscription –Default $subscription 
Select-AzureSubscription : The subscription named 'ENTER YOUR SUBSCRIPTION NAME HERE' cannot 
be found. Use Set-AzureSubscription to initialize the subscription data. 
At line:3 char:1 
+ Select-AzureSubscription –Default $subscription 
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
    + CategoryInfo   : CloseError: (:) [Select-AzureSubscription], Exception 
    + FullyQualifiedErrorId : Microsoft.WindowsAzure.Commands.Profile.SelectAzureSubscripti 
    onCommand 


PS C:\> $subscription = “Pay-As-You-Go” 

Select-AzureSubscription –Default $subscription 

PS C:\> $adminCredentials = Get-Credential -Message "Message new Admin credentals" 

PS C:\> 
Get-AzureVM | 
Where-Object -Property Status -EQ "ReadyRole" | 
Out-GridView -Title "Select a VM …" -PassThru | 
ForEach-Object { 
    $VM = Get-AzureVM -Name $_.Name -ServiceName $_.ServiceName 
    If ($VM.VM.ProvisionGuestAgent) { 
     Set-AzureVMAccessExtension -VM $VM ` 
      -UserName $adminCredentials.UserName ` 
      -Password $adminCredentials.GetNetworkCredential().Password ` 
      -ReferenceName "VMAccessAgent" | 
     Update-AzureVM 
     Restart-AzureVM -ServiceName $VM.ServiceName -Name $VM.Name 
    } else { 
     Write-Output "$($VM.Name): VM Agent Not Installed" 
    } 
} 

PS C:\> Get-AzureVm -ServiceName "boincgrid" ' | Format-Table -auto "Name",@{Expression={$_.InstanceUpgradeDomain};Label="UpgDom";Align="Right"},"InstanceStatus" 
The string is missing the terminator: '. 
    + CategoryInfo   : ParserError: (:) [], ParentContainsErrorRecordException 
    + FullyQualifiedErrorId : TerminatorExpectedAtEndOfString 


PS C:\> Get-AzureVm -ServiceName "boincgrid" ' | Format-Table -auto "Name",@{Expression={$_.InstanceUpgradeDomain};Label="UpgDom";Align="Right"},"InstanceStatus"; 
The string is missing the terminator: '. 
    + CategoryInfo   : ParserError: (:) [], ParentContainsErrorRecordException 
    + FullyQualifiedErrorId : TerminatorExpectedAtEndOfString 


PS C:\> Get-AzureVm -ServiceName "boincgrid" ' | Format-Table -auto "Name",@{Expression={$_.InstanceUpgradeDomain};Label="UpgDom";Align="Right"},"InstanceStatus" 
The string is missing the terminator: '. 
    + CategoryInfo   : ParserError: (:) [], ParentContainsErrorRecordException 
    + FullyQualifiedErrorId : TerminatorExpectedAtEndOfString 


PS C:\> Get-AzureVm -ServiceName "boincgrid" ' | Format-Table -auto "Name",@{Expression={$_.InstanceUpgradeDomain};Label="UpgDom";Align="Right"},"InstanceStatus"; 
The string is missing the terminator: '. 
    + CategoryInfo   : ParserError: (:) [], ParentContainsErrorRecordException 
    + FullyQualifiedErrorId : TerminatorExpectedAtEndOfString 


PS C:\> Get-AzureVm -ServiceName "boincgrid" ' | Format-Table -auto "Name",@{Expression={$_.InstanceUpgradeDomain};Label="UpgDom";Align="Right"} 
The string is missing the terminator: '. 
    + CategoryInfo   : ParserError: (:) [], ParentContainsErrorRecordException 
    + FullyQualifiedErrorId : TerminatorExpectedAtEndOfString 


PS C:\> Get-AzureVm -ServiceName "boincgrid" | Format-Table -auto "Name",@{Expression={$_.InstanceUpgradeDomain};Label="UpgDom";Align="Right"},"InstanceStatus" 
WARNING: No deployment found in service: 'boincgrid'. 

PS C:\> Get-AzureVm -ServiceName "VIRTUAL MACHINES" -Name "BoincGrid" | Format-Table -auto "Name",@{Expression={$_.InstanceUpgradeDomain};Label="UpgDom";Align="Right"},"InstanceStatus" 
Get-AzureVm : BadRequest: The hosted service name is invalid. 
At line:1 char:1 
+ Get-AzureVm -ServiceName "VIRTUAL MACHINES" -Name "BoincGrid" | Format-Table -au ... 
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
    + CategoryInfo   : CloseError: (:) [Get-AzureVM], CloudException 
    + FullyQualifiedErrorId : Microsoft.WindowsAzure.Commands.ServiceManagement.IaaS.GetAzu 
    reVMCommand 


PS C:\> Get-AzureVm -ServiceName "VIRTUAL MACHINE" -Name "BoincGrid" | Format-Table -auto "Name",@{Expression={$_.InstanceUpgradeDomain};Label="UpgDom";Align="Right"},"InstanceStatus" 
Get-AzureVm : BadRequest: The hosted service name is invalid. 
At line:1 char:1 
+ Get-AzureVm -ServiceName "VIRTUAL MACHINE" -Name "BoincGrid" | Format-Table -aut ... 
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
    + CategoryInfo   : CloseError: (:) [Get-AzureVM], CloudException 
    + FullyQualifiedErrorId : Microsoft.WindowsAzure.Commands.ServiceManagement.IaaS.GetAzu 
    reVMCommand 


PS C:\> Get-AzureVm -ServiceName "Virtual Machine" -Name "BoincGrid" | Format-Table -auto "Name",@{Expression={$_.InstanceUpgradeDomain};Label="UpgDom";Align="Right"},"InstanceStatus" 
Get-AzureVm : BadRequest: The hosted service name is invalid. 
At line:1 char:1 
+ Get-AzureVm -ServiceName "Virtual Machine" -Name "BoincGrid" | Format-Table -aut ... 
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
    + CategoryInfo   : CloseError: (:) [Get-AzureVM], CloudException 
    + FullyQualifiedErrorId : Microsoft.WindowsAzure.Commands.ServiceManagement.IaaS.GetAzu 
    reVMCommand 


PS C:\> Get-AzureVm -ServiceName "VIRTUAL MACHINE" -Name "boincgrid" | Format-Table -auto "Name",@{Expression={$_.InstanceUpgradeDomain};Label="UpgDom";Align="Right"},"InstanceStatus" 
Get-AzureVm : BadRequest: The hosted service name is invalid. 
At line:1 char:1 
+ Get-AzureVm -ServiceName "VIRTUAL MACHINE" -Name "boincgrid" | Format-Table -aut ... 
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
    + CategoryInfo   : CloseError: (:) [Get-AzureVM], CloudException 
    + FullyQualifiedErrorId : Microsoft.WindowsAzure.Commands.ServiceManagement.IaaS.GetAzu 
    reVMCommand 


PS C:\> Get-AzureVm -ServiceName "Boincgrid" -Name "boincgrid" | Format-Table -auto "Name",@{Expression={$_.InstanceUpgradeDomain};Label="UpgDom";Align="Right"},"InstanceStatus" 
WARNING: No deployment found in service: 'Boincgrid'. 

PS C:\> Get-AzureVm -ServiceName "boincgrid" -Name "boincgrid" | Format-Table -auto "Name",@{Expression={$_.InstanceUpgradeDomain};Label="UpgDom";Align="Right"},"InstanceStatus" 
WARNING: No deployment found in service: 'boincgrid'. 

PS C:\> 

我的虚拟机和云服务名称是BoincGrid。

我已经编辑在的Microsoft Developer Network自己定的命令......

http://msdn.microsoft.com/en-us/library/dn495236.aspx

他们的榜样命令是:

Get-AzureVm -ServiceName "MySvc1" ' | Format-Table -auto "Name",@{Expression={$_.InstanceUpgradeDomain};Label="UpgDom";Align="Right"},"InstanceStatus" 

我editedcommand是;

Get-AzureVm -ServiceName "boincgrid" -Name "boincgrid" | Format-Table -auto "Name",@{Expression={$_.InstanceUpgradeDomain};Label="UpgDom";Align="Right"},"InstanceStatus" 

并且输出是;

警告:在服务中找不到部署:'boincgrid'。

我无法连接我的虚拟机...

等待你的帮助,有一个很好的和Ideaflow天。

0

您可以在New Azure管理门户上尝试以下步骤以更改密码。 我已无法再访问旧门户,因此在新窗口提供帮助。 我认为你可以切换到新门户。

Step 1& 2 Choose your Service Step 3 Configure Step 4 Choose Remote Option Step 5 Change Password Here

+0

我试过新的预览门户,它说我必须使用旧的完整门户虚拟机。 –

+0

我尝试了新的预览门户,它说我必须为虚拟机使用老式门户。 @ sudhAnsu63建议您添加新的远程桌面,或使用新密码重新配置它。但我找不到应该在哪里做。我找不到配置远程桌面窗口。你能帮助我如何打开这个远程桌面配置窗口。看来,该系统有RDP密码的错误。 不错的ideaflow天。 –