Skip to main content

DISABLE OFFICE 365 AZURE SYNC AD

Powershell: 
Install-Module MSOnline

#Enter Office 365 Cred
$UserCredential = Get-Credential
Connect-MsolService -Credential $UserCredential

#Verify current config
Get-MsolDirSyncConfiguration

#Disable synchronization
Set-MsolDirSyncEnabled -EnableDirSync $false

Comments