Azure

Azure 虛擬機登錄被拒絕 - 重新部署無法解決

  • May 27, 2019

我無法登錄到我的 WS2019 Azure 虛擬機(通過遠端桌面)。每次我嘗試這樣做時,都會收到此錯誤: 螢幕截圖

The Local Session Manager service failed the sign-in. The request is not supported.

重新部署機器沒有幫助。我無法重置配置,因為:

VM has reported a failure when processing extension 'enablevmaccess'. Error message: "VMAccess Extension does not support Domain Controller.".

我似乎找不到任何合適的解決方案,因為我無法登錄我的帳戶或 cmd(相同的密碼會列印出“無法驗證”錯誤。)

根據此頁面,您應該通過特殊腳本重置域密碼:

在記事本中創建一個腳本作為 script.ps1

         net user <Username> <Password>

Select the VM you want to change domain password
Go to extensions in the VM left panel
Click on +ADD at the top
Select custom Script Extension option

選擇自定義腳本擴展選項後。

Click on the Create option in the bottom of the page
Browse the script file saved on your desktop.
Then Click OK

然後腳本被上傳,您將在通知欄中收到通知。

您也可以使用 PowerShell 來執行此操作(您需要將腳本託管在網路伺服器的某處):

Set-AzureRmVMCustomScriptExtension -ResourceGroupName myRG -VMName myVM -Location vmLocation -FileUri "http://url/script.ps1" -Run 'script.ps1' -Name resetpassword

引用自:https://serverfault.com/questions/968884