
Installing Microsoft Azure Modules in Powershell on Windows 2016 server
In this blog, we will show you the steps to installing Microsoft azure modules in PowerShell on Windows 2016 server.
REQUIREMENTS
- Windows 2016 VM
- Internet Access
INSTALLING AZURE MODULES
- Login to windows VM and start menu to open PowerShell window.
- Run the below command to install Azure Resource Manager module.
Install-Module AzureRm
- Install the below azure module to manage the azure task such as creating, modifying the VM’s.
Install-Module Azure
VERIFYING THE AZURE MODULE
- Execute the below command to list of available azure modules.
Get-Module -ListAvailable *azure*
VIDEO
Thanks for reading this blog. We hope it was useful for you to learn about installing azure modules in PowerShell on Windows 2016.

Loges