-3

通常我们在 Azure 门户上运行 Azure Power shell 命令。但是我们可以通过连接到 Azure 资源组以任何方式在本地计算机 powershell 窗口上运行相同的 azure powershell 命令吗?

4

1 回答 1

1

在要连接到 Azure 的 Windows 计算机上安装 AzureRM 模块。

Azure PowerShell v.5.0.1

安装和配置 Azure PowerShell - Microsoft.com

Install-Module -Name AzureRM

然后使用Connect-AzureRmAccountcmdlet 连接到 Azure。

$Credential = Get-Credential
Connect-AzureRmAccount -Credential $Credential

连接 AzureRmAccount - Microsoft.com

于 2018-05-10T13:19:14.820 回答