
close
close
Every Microsoft Exchange administrator knows that one of the best way to get things done in Exchange on-premise is through the Exchange Management Shell, which is based on Windows PowerShell. With that in mind, many administrators may think you cannot use PowerShell to control Exchange Online, but that simply isn’t the case. You can still put all of your knowledge of scripts and cmdlets to good use with Exchange Online. In this article, I’ll show you how to connect to Exchange Online with PowerShell.
Before starting this process, make sure that you’re running a compatible operating system with necessary updates. Any version of Windows 8 or Windows Server 2012 will work fine. You can also use Windows 7 SP1 or Windows Server 2008 R2 SP1, as long as you also install Microsoft .NET Framework 4.5 or 4.5.1 and Windows Management Framework 3.0 or 4.0.
1. Get started by opening Windows PowerShell on your computer. The first command you are going to enter will prompt you for your credentials:
$UserCredential = Get-Credential
2. The Windows PowerShell Credential Request dialog box will come up. Enter you Exchange Online user name and password and select OK. Your credentials are now stored in the variable $UserCredential, which we will use in the next command.
Using the $UserCredential = Get-Credential command to prompt the
Windows PowerShell credential request dialog box. (Image: Jeff James)
3. Next, enter the following command to create a new session to the Microsoft Exchange Online server:
$Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell-liveid/ -Credential $UserCredential -Authentication Basic -AllowRedirection
This last command will import commands from the remote session we established into the current session.
Import-PSSession $Session
Now you should be connected, and you should have the ability to use cmdlets up against your Office 365. Now that we have the Exchange Online commands let’s try them out. Let’s start off with something simple:
Get-Mailbox
If you received an error message, then there a few things you should check:
Another thing to check is to make sure that Windows PowerShell is configured to run scripts. This only needs to be done once, but you will get an error message without first configuring this option. Start by opening an elevated Windows PowerShell window (right-click the icon and select Run as Administrator). Now enter the following command:
Set-ExecutionPolicy RemoteSigned
Choose Yes by typing ‘Y’ and pressing Enter.
Of course, when you are all done don’t simply close the PowerShell window, but make sure to disconnect first with this command:
Remove-PSSession $Session
And there you have it. Once connected you’ll find that there are still limitations. Being that you aren’t able to control Server features (for the most part) even through the GUI you will also be limited in that regard within the Shell. But now that you have the connection you’ll find out soon enough what you can and cannot do.
More in Exchange Server
Microsoft to Block Unsupported Exchange Servers from Sending Emails to Exchange Online
Mar 24, 2023 | Rabia Noureen
M365 Changelog: (Updated) REST API for On-Premises Mailboxes Preview Ending
Mar 14, 2023 | Petri Staff
Microsoft Advises IT Admins to Remove Some Exchange Server Antivirus Exclusions
Feb 24, 2023 | Rabia Noureen
Most popular on petri