我正在使用“Set-AzureSubscription –DefaultSubscription $SubscriptionID”API 在 powershell 中设置 azure 订阅。

但它给我的错误是“Set-AzureSubscription:找不到与参数名称‘DefaultSubscription’匹配的参数。”

如果 azure powershell API 有变化,请指导我。

最佳答案

是的,PowerShell API 在最近的更新中发生了变化。 Select-AzureSubscription 现在具有设置默认值的参数。该参数的名称是 -Default(而不是 -DefaultSubscription)。

关于azure - Set-AzureSubscription : A parameter cannot be found that matches parameter name 'DefaultSubscription' ,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/20744145/

10-13 07:46