|
| 1 | +# About topic for Azure PowerShell - about_az |
| 2 | + |
| 3 | +## TOPIC |
| 4 | + |
| 5 | +about_Az |
| 6 | + |
| 7 | +## SHORT DESCRIPTION |
| 8 | + |
| 9 | +The Azure Az PowerShell module is a set of cmdlets for managing Azure |
| 10 | +resources directly from the PowerShell command line and in PowerShell |
| 11 | +scripts. |
| 12 | + |
| 13 | +## LONG DESCRIPTION |
| 14 | + |
| 15 | +Azure PowerShell provides cross-platform cmdlets for managing Azure |
| 16 | +services. All Azure PowerShell cmdlets work on Windows PowerShell 5.1 |
| 17 | +and supported versions of PowerShell 7. |
| 18 | + |
| 19 | +The Azure PowerShell cmdlets follow the naming convention |
| 20 | +{verb}-Az{noun}. |
| 21 | + |
| 22 | +- {verb} is an approved PowerShell verb reflecting the corresponding |
| 23 | + HTTP operation. |
| 24 | + |
| 25 | +- {noun} matches or has a close equivalent to the name of the |
| 26 | + resource. |
| 27 | + |
| 28 | +The cmdlets produce .NET objects that can be piped between commands |
| 29 | +simplifying the sequencing of commands making Azure PowerShell a |
| 30 | +powerful solution for scripting and automation purposes. |
| 31 | + |
| 32 | +A PowerShell module is available for each Azure service. For |
| 33 | +convenience, we provide a wrapper module named "Az" that comprises the |
| 34 | +stable modules. Modules in preview must be installed independently or |
| 35 | +via the "AzPreview" wrapper module. |
| 36 | + |
| 37 | +Azure PowerShell is frequently updated to include bug fixes and service |
| 38 | +updates. It is recommended to plan to update to the most recent version |
| 39 | +regularly (a minimum of twice a year). |
| 40 | + |
| 41 | +## GETTING STARTED |
| 42 | + |
| 43 | +1. Connect to Azure using `Connect-AzAccount` |
| 44 | + |
| 45 | +2. Run your first command. For example, create a resource group in the |
| 46 | + east US region. |
| 47 | + ```powershell |
| 48 | + New-AzResourceGroup -Name "MyResoureGroup" -location "eastus" |
| 49 | + ``` |
| 50 | +## SEE ALSO |
| 51 | +Azure PowerShell documentation: |
| 52 | +https://docs.microsoft.com/powershell/azure |
0 commit comments