gpt4 book ai didi

rest - 使用 AzureRM Rest api 重置 VM 上的本地管理员用户

转载 作者:行者123 更新时间:2023-12-03 05:06:34 25 4
gpt4 key购买 nike

我正在使用 AzureRM REST API 与虚拟机管理程序进行通信。我需要做的事情之一是重置虚拟机上的本地管理员密码,但我不知道如何重置它。

最佳答案

我们可以使用Virtual Machine Extensions REST API要做到这一点。它对我来说工作正常。以下是我的详细测试信息。

1.我们需要获取authorization在请求头中

Authorization:Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUz.......
Content-Type:application/json

2.在请求体中添加以下信息

{
"properties": {
"publisher": "Microsoft.Compute",
"type": "VMAccessAgent",
"typeHandlerVersion": "2.0",
"autoUpgradeMinorVersion": true,
"settings": {
"UserName": "local admin" //your local admin
},
"protectedSettings": {
"Password": "your reset passord" //match the password policy
}
},
"location": "East Asia"
}
  • 使用 Fiddler 发送 http 请求。
  • enter image description here

    4.使用重置密码成功远程远程虚拟机。

    我们还可以在 Azure 门户中重置本地管理员密码。

    enter image description here

    关于rest - 使用 AzureRM Rest api 重置 VM 上的本地管理员用户,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41596604/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com