In the last article, we discussed how to install the Az PowerShell module. Now let’s discuss how to install AzureRM PowerShell.
Install AzureRM PowerShell Module
To install AzureRM PowerShell module, follow the steps below.
1. Open the PowerShell ISE using the Run as Administrator mode.

2. Run the following PowerShell cmdlet to ensure the PowerShell Get-Module is installed on your local machine.
PS C:\WINDOWS\system32> Get-Module PowerShellGet -list | Select-Object Name,Version,Path
3. To install the AzureRM PowerShell module, run the following PowerShell cmdlet
PS C:\WINDOWS\system32> Install-Module -Name AzureRM
You can also specify the version of the PowerShell AzureRM module using the PowerShell cmdlet below.
PS C:\WINDOWS\system32> Install-Module -Name AzureRM -RequiredVersion 2.3.0
You can also use the below PowerShell cmdlet to install the AzureRM module
Install-Module AzureRM -AllowClobber
Once you execute the above PowerShell cmdlet, click on the Yes to All button to confirm the installation of the AzureRM module.
After you click on the Yes to All button, it will start the installation of the AzureRM module, as shown below

Now, to make sure that the AzureRM module is installed successfully, you can run the following PowerShell cmdlet
Get-InstalledModule 
Check out: What is Azure Cloud Shell and how to access Azure Cloud Shell
Conclusion
This article discussed how to install AzureRM module in PowerShell. Thanks for reading this article !!!

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.
