Hello,
I am trying to install AzureRM and AADRM PowerShell module and am running into issues.
Environment:
Behind a corporate proxy, running PowerShell 5.1 with elevated privileges. Windows 7 64bit.
AzureRM Install
Install-Module -Name AzureRM -RequiredVersion 6.7.0
When I run this command I receive the following error:
PackageManagement\Install-Package : No match was found for the specified search criteria and module name ‘AzureRm’.
Try Get-PSRepository to see all available registered module repositories.
At C:\Program Files\WindowsPowerShell\Modules\PowerShellGet\1.0.0.1\PSModule.psm1:1772 char:21
- … $null = PackageManagement\Install-Package @PSBoundParameters
-
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - CategoryInfo : ObjectNotFound: (Microsoft.Power…InstallPackage:InstallPackage) [Install-Package], Exception
- FullyQualifiedErrorId : NoMatchFoundForCriteria,Microsoft.PowerShell.PackageManagement.Cmdlets.InstallPackage
AADRM Install
Install-Module -Name AADRM
When I run this command I get the following error:
PackageManagement\Install-Package : No match was found for the specified search criteria and module name ‘aadrm’. Try Get-PSRepository to see all available registered module repositories.
At C:\Program Files\WindowsPowerShell\Modules\PowerShellGet\1.0.0.1\PSModule.psm1:1772 char:21
- … $null = PackageManagement\Install-Package @PSBoundParameters
-
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - CategoryInfo : ObjectNotFound: (Microsoft.Power…InstallPackage:InstallPackage) [Install-Package], Exception
- FullyQualifiedErrorId : NoMatchFoundForCriteria,Microsoft.PowerShell.PackageManagement.Cmdlets.InstallPackage
I’m not sure where to proceed with these errors. Thank you.