HY
我安装了Visual Studio的Azure VM。当我从这里运行Shutdown脚本(Runbook)时: https://gallery.technet.microsoft.com/scriptcenter/Stop-Azure-Virtual-Machine-0b1fea97
脚本状态表示已完成但未关闭我的VM。输出显示关闭但没有任何反应。
对此有何建议?
感谢您的帮助。 彼得
答案 0 :(得分:1)
我建议你做几件事 -
一个。大多数进入ASSET选项卡并添加适当的Windows PowerShell凭据(只需使用用户名和密码,就像用于登录azure门户网站一样)。
湾在Runbook中添加代码。假设您的powershell自动化凭据名称是StartVM,您的订阅名称是xxx。在这种情况下,工作流程将是 -
workflow StartVM
{
$Cred = Get-AutomationPSCredential -Name
StartVM' Add-AzureAccount -Credential $Cred
Select-AzureSubscription -SubscriptionName “xxx”
inlineScript
{
Start-AzureVM -Name TestServer -ServiceName CS12345
}
}
℃。在此之后,您可以根据需要安排Runbook。
希望这个人会帮助你 -
http://azure.microsoft.com/blog/2014/11/25/introducing-the-azure-automation-script-converter/ http://azure.microsoft.com/en-us/documentation/articles/automation-create-runbook-from-samples/
感谢。