Force Directory synchronization and verify

Office 365

Force directory synchronization using Windows PowerShell

You can use the directory synchronization Windows PowerShell cmdlet to force synchronization. The cmdlet is installed when you install the Directory Sync tool.
1. Log onto the server where the directory Sync tool is installed, start powershell as an Administrator

or

Create a Remote Powershell session to that server:

2. To force sync enter:

Verify directory synchronization after forced synchronization
1. Ensure that there is a valid email address for your organization’s designated cloud service technical contact.
2. Sign in to the cloud service with service administrator credentials.
3. Verify the additional properties of a specific user account (such as Job title, Department, or Street address) that will be synchronized from your local Active Directory to Windows Azure AD.
4. Verify that you cannot edit the additional properties of that user account in Windows Azure AD.
5. Log on to your local Active Directory with the permissions needed to edit user accounts, contacts, and distribution groups.
6. In your local Active Directory, make a simple but obvious change to one of the additional properties of the specific user account.
7. Open the Windows Azure Active Directory Sync tool Configuration Wizard.

  1. Provide the information requested on the wizard pages.
  2. On the Finished page, select Synchronize your directories now, and then click Finish.

8. When directory synchronization is complete, view the additional properties of the user in Windows Azure AD, and verify that the change you made to the additional properties of the specific user account in your local Active Directory have been synchronized to Windows Azure AD.

Verify directory synchronization after automatic synchronization

  1. Sign in to the cloud service with service administrator credentials.
  2. When directory synchronization is complete, verify that the changes you made in your local Active Directory now appear in the cloud.
No Comments

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Office 365
Import Contacts to Office 365 Global Address List

Office 365 doesn’t offer you a way to easily import a list of contacts into your company’s Global Address List (GAL). But it can be done quite easily with Powershell and a csv file of the contacts to import. First of all the csv file. There are some mandatory fields …

Office 365
Save Sent Items in Shared Mailbox

The default behavior for shared mailboxes is that the sent mail will go to the sent items folder of the senders mailbox. This means other users with shared access cannot see what has been sent from this mailbox. We can change this so the sent items are saved to the …

Office 365
Create a Dynamic Distribution Group of All Users in Office 365

Launch Powershell as an Administrator and connect to Office 365 Run New-DynamicDistributionGroup -IncludedRecipients MailboxUsers -Name “AllUsers” That’s it – Dynamic Distribution Group created. To check the membership of the group…… run $AllUsers = Get-DynamicDistributionGroup “AllUsers” Get-Recipient -RecipientPreviewFilter $AllUsers.RecipientFilter | FT DisplayName, Alias, PrimarySMTPAddress   Related