session 之间Add-AzureRmAccount或别名Login-AzureRmAccount似乎不像Add-AzureAccount那样持久存在。

有没有办法让它持久?

最佳答案

在将帐户添加到 session (Add-AzureRmAccountLogin-AzureRmAccount)之后,请使用

Save-AzureRmProfile -Path <path-to-file>

保存当前凭证
Select-AzureRmProfile -Path <path-to-file>

加载它们。

Thanks to Mark Cowlishaw

关于powershell - 如何在 session 之间保留AzureRMAccount,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/33603250/

10-08 22:36