SOLVED

synctime

Brass Contributor

Hi experts 

when i change the password for a user, outlook and skype prompts for credentials after 8 to 10min. what is the time interval to sync between AD and exchange. how can i know this in exchange on premises and exchange online

4 Replies

The default sync frequency is 30 minutes, I assume you are using the latest Azure AD connect on premise. You can change this or even run a forced delta sync.

 

To change the default sync interval, on the server running AAD Connect

 

Import-Module ADSync

and then to view current config

Get-ADSyncScheduler 

to customize the sync schedule:

Set-ADSyncScheduler -CustomizedSyncCycleInterval d.HH:mm:ss

 

to force a Delta sync after you changed something on on-prem AD

Start-ADSyncSyncCycle -PolicyType Delta

More on this documented here:

https://docs.microsoft.com/en-us/azure/active-directory/connect/active-directory-aadconnectsync-feat...

 

 

Hi experts i am new to Azure AD, is there GUI interface to access Azure AD, if so could you plz help me with the url

best response confirmed by Rising Flight (Brass Contributor)
Solution

Hi @Rising Flight

 

The change of the password is not related to the 30 min default sync. 

 

The process is run about each 2 minutes. You can read more here https://docs.microsoft.com/en-us/azure/active-directory/connect/active-directory-aadconnectsync-impl...

1 best response

Accepted Solutions
best response confirmed by Rising Flight (Brass Contributor)