Categories
Technical

Office 365: Initiate a full password sync using DirSync

Having a need to rapidly sync passwords to Office 365 using Directly Sync (DirSync) I come across the following method that seems to work with minimal effort.  By default the DirSync only kicks off ever 3-5 min’s. To initiate a full password sync you can do the following: Open PowerShell, and then type: Import-Module DirSync   […]

Categories
News Technical

Office 365: Directory Synchronization Isssues

Yes!  In Office 365 at last and now synchronizations are failing The followin message is shown in the forefront identity manager: stopped-server-down And with the event id of 655 the following message is shown: Failed credential provisioning ping. Error: Microsoft.MetadirectoryServices.ServerDownException: Failed even after 5 retries. Action: ProvisionCredentials, Exception: Unable to communicate with the Windows Azure […]

Categories
News Technical

Office 365: MO17808 – Service degradation

Well this may be why I’ve had issues all day Current Status: Engineers continue to perform tests on the affected networking capacity in order to develop a plan to remediate impact. User Experience: End users are not directly affected by this issue. Customer Impact: Customer impact appears to be limited at this time. Any users […]

Categories
Software Technical

Office365: Using PowerShell to get Office365 license info

Working to apply bulk apply licenses I stumbled upon some useful commands to list the licenses assigned to my Office 365 Account. The following command will list account Sku ID’s along with the active and consumed units. Best of all list them in a nice grid view Get-MsolAccountSku |Out-GridView We can also pull the subset […]

Categories
Personal Technical

Office 365: Cutover Migration | Lost Delegation on Mailboxes

I am posting this to help any of you who are looking to be proactive in your approach to migrate into Office 365 / Exchange Online Services. After migrating mailboxes info Office 365, you will noticed that under your recipient’s mailbox delegation all previous access levels have been removed. In fact they never came over […]

Categories
How-To Technical

Office 365: Convert Mailbox to Shared Mailbox after Cutover Migration

When performing a cut-over migration the Exchange attribute indicating that the mailbox was a shared mailbox is lost. To correct this I have done the following steps: List out all of the shared mailboxes form my on-premises Exchange and export them into a CSV file. Get-Mailbox -ResultSize Unlimited -RecipientTypeDetails SharedMailbox | Select UserPrincipalName | Export-Csv […]