Open In App

Microsoft Azure – Check Available Azure Modules in Shell

Last Updated : 30 Mar, 2023
Improve
Improve
Like Article
Like
Save
Share
Report

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.

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 *
Get-Module

 

List the Modules where the Module name starts with Az.

$ Get-Module Az.*
List the Modules

 

List all the Microsoft PowerShell Modules.

$ Get-Module Microsoft.PowerShell.*
List all the Microsoft PowerShell Modules

 

To Find the Exact Module in the List.

$ Get-Module PSCloudShellUtility
To Find the Exact Module in the List

 


Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads