How to Connect to Microsoft 365 Admin Center using PowerShell

Hi Everyone this is Prem, I have worked as Microsoft 365 support ambassador. In this blog I will share how to Connect to Microsoft 365 Admin Center using PowerShell (MSOL).

 

 

Steps to Connect to Microsoft 365 Admin Center using PowerShell:

Search for windows PowerShell on your computer and run it as an administrator:

 

 

Once opened it should look like this:

 

 

Now we will run the following command in the PowerShell to install the Module which will help us to connect to Microsoft 365 admin center:

 

Install-Module -Name MsOnline -Scope CurrentUser

(If prompted to allow the installation please allow the same by typing A)

 

Now we will run the following:

 

Import-Module MsOnline

 

If you get error that running script is disabled then run the following command and after this run the above Import command again:

 

Set-ExecutionPolicy remotesigned -Scope CurrentUser

Allow it to set the execution policy by typing A and enter.

 

Import-Module MsOnline

Once import is completed run the below command to connect:

 

Connect-MsolService

 

Enter your Global Admin email address and password (Depending on the task to be performed on the PowerShell you can use different admin account as well).

 

 

If you have Multifactor Authentication enabled on the account then you will have to complete the second steps of Authentication (Text, Call, Authenticator app, etc.) as well and after it is completed you should be connected to Office 365 Admin Center using PowerShell.

 

 

By following the above steps, you should be able to connect to Microsoft Office 365 using PowerShell.

 

 

Date:3/08/2022

Author: Prem

Tags: How to Connect to Microsoft 365 Admin Center using PowerShell

2 thoughts on “How to Connect to Microsoft 365 Admin Center using PowerShell”

  1. Pingback: How to Delete User Account Permanently in Office 365 - The Admin 365

  2. Pingback: How to Connect to Azure Ad using PowerShell - The Admin 365

Leave a Comment

Your email address will not be published. Required fields are marked *