Recently, I got the requirement to install the Azure AZ module. In this article, I will walk you through the complete steps to do this.
How To Install Azure AZ Module In PowerShell
To install Azure AZ module in PowerShell, follow the below steps.
1. Open Windows PowerShell ISE with Run as administrator option.

2. Now, we can execute the below PowerShell command to install the Az module for the current user.
Install-Module -Name Az -Scope CurrentUser -Repository PSGallery -ForceAfter executing the above command, the Az module was installed successfully, as shown in the screenshot below.

3. We can execute the below PowerShell command to install the Az module for all users.
Install-Module -Name Az -Scope AllUsers -Repository PSGallery -ForceAfter executing the above PowerShell command, I got the expected output as shown below,, and the Az powershell module was installed successfully for all users.

4. If you wish to do the silent installation without any prompts, use the below Powershell command.
Install-Module -Name Az -Scope CurrentUser -Repository PSGallery -Force -AllowClobberAfter executing the above command, I got the expected output below.

5. We can also execute the below PowerShell command to install any specific version of the Az module, as shown below.
Install-Module -Name Az -RequiredVersion 5.5.0After executing the above command, I got the expected output below.

Conclusion
Installing Azure AZ module in PowerShell is so easy using the information mentioned in this article.
You may also like following the articles below.
- How To Uninstall Azure AD Module In PowerShell
- How To Install Azure AD Connect PowerShell Module
- How To Get Azure AD Token From Postman

I am Rajkishore, and I am a Microsoft Certified IT Consultant. I have over 14 years of experience in Microsoft Azure and AWS, with good experience in Azure Functions, Storage, Virtual Machines, Logic Apps, PowerShell Commands, CLI Commands, Machine Learning, AI, Azure Cognitive Services, DevOps, etc. Not only that, I do have good real-time experience in designing and developing cloud-native data integrations on Azure or AWS, etc. I hope you will learn from these practical Azure tutorials. Read more.
