Azure PowerShell Commands Reference

Comprehensive documentation for all Azure PowerShell cmdlets.

Popular Cmdlets

Get-AzVM

Gets virtual machines.

View Details

New-AzResourceGroup

Creates a resource group.

View Details

Get-AzStorageAccount

Gets storage accounts.

View Details

Set-AzVNetGateway

Updates a virtual network gateway.

View Details

Get-AzWebApp

Gets web apps.

View Details

New-AzSqlDatabase

Creates a SQL database.

View Details

Browse by Module

Select a module from the sidebar to see its associated cmdlets.

Azure PowerShell cmdlets are organized into modules based on the Azure service they manage. Each module contains a set of related commands for performing specific tasks.

For example, the Az.Compute module contains cmdlets for managing Azure Virtual Machines, while the Az.Storage module provides commands for working with Azure Storage accounts.

Getting Started with Azure PowerShell

To start using Azure PowerShell, you need to install the Az module. You can do this by running the following command in your PowerShell session:

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

After installation, you can connect to your Azure account using:

Connect-AzAccount

You can find more detailed installation and connection instructions on the Azure PowerShell documentation.