No match was found for the specified search criteria and provider name ‘NuGet’

Recently, while I was trying to install the Azure Powershell module, I got this error No match was found for the specified search criteria and provider name ‘NuGet’. In this article, I will walk you through the quick steps to fix this error.

No match was found for the specified search criteria and provider name ‘NuGet’

I was executing the below line of code, and I got this error.

if (Get-Module -Name AzureRM -ListAvailable) {
    Write-Warning -Message 'Azure module not installed.'
} else {
    Install-Module -Name Az -AllowClobber -Scope AllUsers
}

Ohh, again I am getting the same error

No match was found for the specified search criteria and provider name 'NuGet'. Try 'Get-PackageProvider -ListAvailable' to see if the provider exists on the system

Solution

Now, to fix this error, we need to follow the steps below

  1. We must first install the ‘NuGet’ package to fix this error.
  2. Then run the command below; it will deregister and register the repository again.
Register-PSRepository -Default
No match was found for the specified search criteria and provider name 'NuGet'
  1. Now, run the following line of code to install the Azure PowerShell module. Now you will not get any error this time. This will install the Azure PowerShell module successfully.
if (Get-Module -Name AzureRM -ListAvailable) {
    Write-Warning -Message 'Azure module not installed.'
} else {
    Install-Module -Name Az -AllowClobber -Scope AllUsers
}

See below

unable to find package provider 'nuget'.
  1. Now, as you can see below, it started installing the Azure PowerShell module successfully. Check out the screenshot below for your reference.
unable to find package providers

Video Tutorial

Conclusion

This article explained you how to fix the error No match was found for the specified search criteria and provider name ‘NuGet’. Hope this will help you.

You may also like the following articles.

Azure Virtual Machine

DOWNLOAD FREE AZURE VIRTUAL MACHINE PDF

Download our free 25+ page Azure Virtual Machine guide and master cloud deployment today!