When trying to activate domain synchronisation from the Microsoft Online at the following URL, there is an error:
https://portal.microsoftonline.com/DirSync/DirectorySynchronization.aspx
Sorry, we can't process your request.
You don’t have permission to access this page or perform this action.
Support Information
Correlation ID:
sea#579dde6b-9726-4b95-b181-86cbb4b4e893
Session ID:
Error code:
0
This can be done via PowerShell using the Windows Azure AD Module.
Download and install the Windows Azure AD Module for Windows PowerShell:
http://technet.microsoft.com/en-us/library/jj151815.aspx#bkmk_installmodule
Run the following PowerShell commands:
$cred = get-credential
Enter the admin@<company identifier>.onmicrosoft.com credentials then run the following commands:
Connect-MSOLService -credential $cred
(Get-MSOLCompanyInformation).DirectorySynchronizationEnabled
This will return the current state of activation. To activate Directory Synchronisation:
Set-MsolDirSyncEnabled -EnableDirSync $true
Re check that Directory Synchronisation is now activate. The following command should return
True:
(Get-MSOLCompanyInformation).DirectorySynchronizationEnabled