Let's assume that you have got a client named XYZ Services (xyzServices.com) that you need to set up an Office 365 tenant for. As per the client, they have never used Office 365 services before, they have been on some On-Prem Exchange. When creating a new tenant, you are required to enter the Tenant name... Continue Reading →
Mailbox and Distribution Access Permissions
There have been many instances where we get a request to find out which mailboxes if any does a specific mailbox has access to and what's the access level. And also to find out out which distribution group(s) is user member of. It's not easy to get this manually by checking the properties of each... Continue Reading →
Migrating On-Prem Users To Existing O365 Tenant With AD Connect Sync Already In Place
Let’s say you are in the process of migrating a client of yours to Office 365 from their on-premises environment where they are running Microsoft Exchange server. Normally, you would create a new tenant on O365 and then create the users on cloud only to be begin with. After creating users, you would start mail... Continue Reading →
Move AD Connect to a Different Server
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 →