Forum Discussion
PCHealer
Jan 11, 2022Brass Contributor
How to run Exchage PowerShell - Exchange Online
Simple question I am working at a company that uses Exchange online ( they call it Cloud Based - O365 which is the same thing I think). I am logged into https://admin.exchange.microsoft.com/ ...
Kevin_Morgan
Jan 12, 2022Iron Contributor
- Start the Windows PowerShell console with "Run as administrator" privilege.
- Run the following command to install the Exchange Online Management powershell module. This is one time work.
Install-Module ExchangeOnlineManagement
- Once you have installed the module successfully, you can run the following command to Connect with your Exchange Online service.
Connect-ExchangeOnline
- Now, you can run the required Exchange commands to work with your Exchange service.
Get-Mailbox # List mailboxes
Get-EXOMailbox # List mailboxes using V2 module script. Provide faster output.
PCHealer
Jan 12, 2022Brass Contributor
I already have Exchange 1 - 365 plan so I was then able to install PowerShell on my Macbook and conntact to Exchange Online. Brilliant thanks alot!