31.PowerShell連接Azure(國內&國際)
1.安裝和配置 Azure PowerShell
以管理員方式打開Powershell
首先安裝Powershell最新版本
場景
安裝說明
Windows 10
Windows Server 2016
內置在 OS 隨附的 Windows Management Framework (WMF) 5.0 中
我想要升級到 PowerShell 5
- 安裝最新版本的 WMF
- 運行以下命令:
Install-Module PowerShellGet -Force
我正在運行某個包含 PowerShell 3 或 PowerShell 4 的 Windows 版本
獲取 PackageManagement 模塊
- 運行以下命令:
Install-Module PowerShellGet -Force
安裝 PowerShell 庫中的項需要 PowerShellGet 模塊。 請確保使用適當版本的 PowerShellGet 並滿足其他系統要求。 運行以下命令,確定是否已在系統上安裝 PowerShellGet
Get-Module -Name PowerShellGet -ListAvailable | Select-Object -Property Name,Version,Path
會看到類似於下面的信息
還可以使用以下命令更新 PowerShellGet
Install-Module PowerShellGet -Force
解除Powershell禁止運行腳本限制
Set-ExecutionPolicy RemoteSigned
2.接下來安裝Azure Powershell
Install-Module -Name AzureRM -AllowClobber
提示是否安裝,輸入Y或者A回車
3.接下來加載AzureRM模塊
Import-Module -Name AzureRM
查看可用的環境列表
Get-AzureRmEnvironment | Select-Object Name
可用看到有中國版、國際版 、德國版、美國政府版
4.交互式連接登錄
4.1登錄國際版
Login-AzureRmAccount
回車後會彈出一個登錄框,輸入用戶名密碼即可。
4.2登錄國內版
Login-AzureRmAccount -EnvironmentName AzureChinaCloud
回車後會彈出一個登錄框,輸入用戶名密碼即可
5.輸入完用戶名密碼登錄成功後看到訂閱信息
6.接下來就可以開始執行其他的配置和操作了,例如查看我的VM列表
31.PowerShell連接Azure(國內&國際)