在 macOS 上安裝 Azure PowerShell
本文說明如何在 macOS 上從 PowerShell 資源庫安裝 Az PowerShell 模組。
Az PowerShell 模組為彙總模組。 安裝此模組會下載所有正式推出的 Az PowerShell 模組,並使其 Cmdlet 可供使用。
必要條件
- 安裝支援的 PowerShell 版本 7 或更新版本
安裝
開啟終端或其他殼層主機應用程式,然後執行 pwsh
以啟動 PowerShell。
請使用 Install-Module Cmdlet 來安裝 Az PowerShell 模組:
Install-Module -Name Az -Repository PSGallery -Force
更新 Azure PowerShell 模組
使用 Update-Module Cmdlet 更新至最新版的 Az PowerShell 模組。
Update-Module -Name Az -Force
使用 Update-Module
更新 Az PowerShell 模組並不會移除系統中舊版的 Az PowerShell 模組。
解除安裝
若要移除系統中的所有 Az PowerShell 模組,請參閱解除安裝 Azure PowerShell 模組。
登入
若要開始使用 Az PowerShell 模組管理 Azure 資源,請啟動 PowerShell 工作階段並執行 Connect-AzAccount
以登入 Azure:
Connect-AzAccount
使用您的 Azure 帳戶登入認證來登入隨即開啟的瀏覽器視窗。
您必須針對每個啟動的新 PowerShell 工作階段重複此步驟。 若要了解如何在整個 PowerShell 工作階段保持您的 Azure 登入,請參閱 Azure PowerShell 內容物件。
疑難排解
如需 Az PowerShell 模組常見安裝問題的解決方案,請參閱針對 Az PowerShell 模組的安裝問題進行疑難排解。
提供意見反應
若要提出 Az PowerShell 模組的相關問題,請參閱:在 GitHub 上提出問題。
若要在 PowerShell 工作階段中提供意見反應,請使用 Send-Feedback Cmdlet。
下一步
若要深入了解如何使用 Az PowerShell 模組管理 Azure 資源,請參閱 [Azure PowerShell 入門]。