How do I install this module in Powershell? It is required in order to run the ./ConfigureServerSideSync.ps' script to enable Server Side Email Synchronization.
*This post is locked for comments
I have the same question (0)MSOnlineExtended module has been deprecated. In order to resolve it, you need to skip this step on the powershell script ConfigurationCRMServerSideSync.ps1.
On the above mentioned powershell script, you can commented out the following lines, This should fix the issue.
if (-not (Get-Module -list -Name "MSOnlineExtended"))
{
ExitWithError("Microsoft Dynamics CRM hybrid configuration requires installing MSOnlineExtended PowerShell support. Please go to go.microsoft.com/.../p to install this support.")
}
else
{
Import-Module MSOnlineExtended -force
}
Community Member
2
Christoph Pock
1