There are cases where you have to move AD Connect to a different server and it’s a very simple process to do so. We can’t have more than one AD Connect syncing to O365. Please make sure you log on to AD Connect using global admin credentials. Install AD Connect on new server and enable... Continue Reading →
Outlook logon fails after mailbox moves from Exchange 2010 to Exchange 2013 / 2016
Recently, we moved few mailboxes to Exchange 2016 from Exchange 2010 and most of them did work but some of them we ended up recreating the profile and it worked. but some of them didn't work even after recreating the outlook profile. This was tested on Outlook 2010 SP2, Outlook 2013 and Outlook 2016. Errors... Continue Reading →
Azure AD / On-Premise AD Sync Immutable ID Issues
There has been instances where Azure AD complains about having duplicate UserPrincipalNames and / or duplicate accounts are created on O365 after running sync with on-prem AD. Before we dive into the fix, just want to give you some back ground as to what happens when you sync on-prem AD objects to O365. When you... Continue Reading →
Office 365 Autodiscover
Outlook 2016 and on wards, outlook client will connect you directly to O365 if there is no auto discover set up. It's called direct connect. It's a good feature if the mailbox is on O365 but there are cases where companies are using outlook 2016 / outlook 365 clients but their mailboxes are not O365.... Continue Reading →
Connecting to Exchange Online Power shell
Open Power shell as an admin. $Username = "admin@xxx.onmicrosoft.com" $Password = ConvertTo-SecureString ‘12345678’ -AsPlainText -Force $LiveCred = New-Object System.Management.Automation.PSCredential $Username, $Password $Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell/ -Credential $LiveCred -Authentication Basic -AllowRedirection OR (If the above doesn't work) $Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell-liveid/ -Credential $UserCredential -Authentication Basic -AllowRedirection Import-PSSession $Session Connect-MsolService –Credential... Continue Reading →