In this azure tutorial, we will discuss how to fix the error, No match was found for the specified search criteria and module name ‘AzureAD’. Try Get-PSRepository to see all available registered module repositories. which comes while trying to install the AzureAD module in PowerShell in Azure.
No match was found for the specified search criteria and module name ‘AzureAD’
I was trying to install the AzureAD module in PowerShell, I got the above error. I was executing the below command to install the AzureAD module in PowerShell.
- How to create and add members to Azure Active Directory Group
- Create a Recovery Services vault in Azure
Install-Module -Name AzureAD

Below is the exact error message.
PackageManagement\Install-Package: No match was found for the specified search criteria and module name ‘AzureAD’. Try Get-PSRepository to see all available registered module
repositories.
At C:\Program Files\WindowsPowerShell\Modules\PowerShellGet\1.0.0.1\PSModule.psm1:1809 char:21
- … $null = PackageManagement\Install-Package @PSBoundParameters
~~~~~~~~~~~~- CategoryInfo : ObjectNotFound: (Microsoft.Power….InstallPackage:InstallPackage) [Install-Package], Exception
- FullyQualifiedErrorId : NoMatchFoundForCriteria,Microsoft.PowerShell.PackageManagement.Cmdlets.InstallPackage
Now to fix this error, follow the below steps
Step-1:
Run the below command first using PowerShell ISE or Windows PowerShell.
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
See here

Step-2:
Now run the below command to install the AzureAD module. It will install the AzureAD module without any issue.
Install-Module -Name AzureAD

Step-3:
Now you can see the below popup. Click the Yes button.

Step-4:
You can see it’s started progressing installing the AzureAD module.

You may like following Azure tutorials:
- Create a user in Azure active directory
- How to add bulk guest users in Azure AD B2B from Azure Portal and PowerShell
- What is Azure Active Directory B2B collaboration (Azure AD B2B)
- The term ‘get-aduser’ is not recognized as the name of a cmdlet in Windows 10 PowerShell
- The term ‘connect-azuread’ is not recognized as the name of a cmdlet function Azure
In this Azure tutorial, we discussed how to fix error, AzureAD No match was found for the specified search criteria. Try Get-PSRepository to see all available registered module repositories. I hope it helped you to fix your issue.