Posted On March 31, 2019

Manual Sync for Office 365 Azure-AD Integration

kimconnect 0 comments
blog.KimConnect.com >> Codes , Windows >> Manual Sync for Office 365 Azure-AD Integration

1. Perform Prerequisites:


*
a. Install Dot Net Framework 4.5 )
*
b. Install Windows Management Framework 3.0 )
*
c. Download and install Azure AD Connect )
*
e. Enable PowerShell Remoting on the server: Run PowerShell as Administrator with this command: "Enable-PSRemoting -Force"

1.
Run this PowerShell script from a remote machine:

$serverName = serverNameHere
Invoke-Command -computername $serverName -scriptblock { Start-ADSyncSyncCycle -PolicyType Delta } -credential administrator

Leave a Reply

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

Related Post

SMTP Testing Commands How to test SMTP operations using Telnet

SMTP Testing Commands How to test SMTP operations using Telnet1. Telnet into Exchange server hosting…

How to Install Asterisk on Ubuntu

su[enter root password]cd /tempwget apt-get install build-essential wget libssl-dev libncurses5-dev libnewt-dev libxml2-dev linux-headers-$(uname -r) libsqlite3-dev…

PowerShell: Stream Reader

Have you ran into scripting situations where opening a file would result in locking from…