How to Install and Connect to AzureADpreview Module for PowerShell

Installing Azure AD Preview Module

In this post, we will see how can we install the AzureAD Preview Module which supports the multi-factor authentication.

So to install the AzureAdPreview Module for PowerShell, Open the Powershell as an administrator, and run the following CMD.

Install-Module AzureADPreview# This cmd will download and install the module from the PSGalery automatically.

Import-Module AzureADpreview# Once the Module is installed we need to import the module.


Connect-AzureAD# This CMD will invoke a login pop up for authentication.


After the authentication is done you will see the screen below.


There are 181 CMDs available in this module we will review those CMDs in the future posts.

Comments