Skip to content

Latest commit

 

History

History
43 lines (37 loc) · 857 Bytes

File metadata and controls

43 lines (37 loc) · 857 Bytes
aliases category classification date date_modified draft id image links local_archive_links pinned print series tags title type
exchange-online-powershell-cheatsheet
powershell
public
2020-11-25 09:21:11 -0800
2020-11-25 09:21:11 -0800
false
20201125172111
false
false
azure
exchange
office
powershell
Exchange Online PowerShell
tech-note

Connect to Exchange Online PowerShell

# Install module:
Install-Module -Name ExchangeOnlineManagement -RequiredVersion 2.0.3 -Confirm:$false

# Load the EXO V2 module:
Import-Module ExchangeOnlineManagement

# Connect to Exchange Online PowerShell:
Connect-ExchangeOnline -UserPrincipalName jake.price@example.com -ShowProgress $true

Helpful Commands:

# Remove user's photo:
Remove-UserPhoto -Identity <user>@example.com -Confirm:$false