如何在 PowerShell 中使用 Azure CLI 连接到 Azure 订阅?
要使用AzCLI连接到特定的azure订阅,我们需要使用“Azaccountset”命令,但在使用此命令之前,请确保您已使用“azlogin”帐户连接到Azure云。
az account set --subscription 'subscription name or id'
您还可以使用-s代替--subscription。
az account set -s 'subscription name or id'
要检查订阅是否正确设置,请使用以下命令。
PS C:\> az account show -otable