Azure PowerShell Overview

Azure PowerShell is a set of cmdlets that leverage the .NET framework for managing Azure resources. You can use Azure PowerShell to manage Azure resources that were deployed through Azure Resource Manager, as well as earlier Azure service management models.

With Azure PowerShell, you can:

Key Concepts

Getting Started

To begin using Azure PowerShell, you need to install the Azure PowerShell module. The recommended way to install it is using PowerShellGet.

Install-Module -Name Az -Scope CurrentUser -Repository PSGallery -Force

After installation, you can connect to your Azure account:

Connect-AzAccount

This command will open a browser window for you to authenticate with your Azure credentials.

Core Cmdlets

Here are some frequently used cmdlets: