直到最近,这两行代码在我的 Azure-Powershell-Workflow 运行手册之一中都能完美运行。
$azureCredential = Get-AutomationPSCredential –Name "<asset-name>"
Add-AzureAccount -credential $azureCredential
现在它失败并显示错误消息Add-AzureAccount : The given key was not present in the dictionary.
。检查$azureCredential
并没有发现任何可疑之处。
Q我必须怎么做才能让它再次运行?