Import-Module ADSync | |
# Your AAD Credentials | |
$Credential = Get-Credential | |
# Disable the deletion threshold | |
Disable-ADSyncExportDeletionThreshold -AADCredential $Credential | |
# Sync changes | |
Start-ADSyncSyncCycle -PolicyType Delta | |
# Enable deletion threshold with default value of 500 | |
Enable-ADSyncExportDeletionThreshold -AADCredential $Credential -DeletionThreshold 500 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment