Steps to Find Azure Modules

Step 1: Log in to Azure Portal.

Step 2: Open the Azure Cloud Shell and switch to PowerShell Console.

Step 3: Use the below following command to check the available azure modules.

$ Get-Module

or you can also use the * at the end. The result would be the same.

$ Get-Module *

 

List the Modules where the Module name starts with Az.

$ Get-Module Az.*

 

List all the Microsoft PowerShell Modules.

$ Get-Module Microsoft.PowerShell.*

 

To Find the Exact Module in the List.

$ Get-Module PSCloudShellUtility

 


Microsoft Azure – Check Available Azure Modules in Shell

Pre-requisite: Azure

Azure Modules are preconfigured templates that allow you to quickly deploy applications on Microsoft Azure. In this article, we’ll show you how to check available modules for your region in the Azure portal using Cloud Shell. To see what Azure modules are available for your region, follow the below steps.

Similar Reads

Steps to Find Azure Modules

Step 1: Log in to Azure Portal....