Get-AzureADPolicy : The term 'Get-AzureADPolicy' is not recognized

After connecting to Azure AD with Connect-AzureAD , If run the command Get-AzureADPolicy, PowerShell is prompting the message as "Get-AzureADPolicy : The term 'Get-AzureADPolicy' is not recognized"

3 Answers

  1. First Disconnect-AzureAD from the logged-in session
  2. Second UnInstall-Module AzureAD
  3. Third Install-Module AzureADPreview
  4. Forth connect-AzureAD Then try Get-AzureADPolicy

This will work

2
Install-Module AzureADPreview 

failed to install at first. Then I have installed AzureAD:

Install-Module AzureAD 

The Get-AzureADPolicy was still missing, so I tried to install AzureADPreview again (without removing AzureAD).

Install-Module AzureADPreview 

This time it proceeded where it has failed previously. Adding the -AllowClobber argument fixed the installation problem.

Install-Module AzureADPreview -AllowClobber 

Restarted Powershell and Get-AzureADPolicy worked.

for some reason after installing the module didn't import automatically. After the import-module AzureADPreview it worked for me

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge that you have read and understand our privacy policy and code of conduct.

You Might Also Like