Azure自动化:Runbook失败

时间:2015-04-27 12:37:05

标签: azure azure-powershell

我使用简单的工作流来停止VM。它执行得很好并且显示一切正常。但是当我交叉检查时,我的VM没有停止。我在这里缺少什么?

workflow StopVM
    {
      inlineScript
      {
         Stop-AzureVM -Name "VM123" -ServiceName "Service123"
      }
    }

1 个答案:

答案 0 :(得分:1)

可能您错过了添加凭据以链接到azure。如果不进行链接,则无法运行azure-cmdlts。但是你也可以使用证书做同样的事情。

这是一些东西 -

Stop-AzureVM does not shutdown my Azure-VM (Runbook)