Using Powershell - Notes

The following can be used as a reference for the previous chapter

1. You can get the installation notes from the following Microsoft documentation link

https://docs.microsoft.com/en-us/powershell/azure/install-az-ps?view=azps-6.3.0

Just ensure to also add the following flag when installing Azure PowerShell ( -AllowClobber).

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

2. To connect to your Azure account, you can use the following command

Connect-AzAccount

3. To list down the resource groups in your Azure account, you can use the following command

Get-AzResourceGroup