PowerShell – Mapping function for Office 365 ServicePlans to ServicePlansId

Hi guys, If you are starting to work with the new Office 365 PowerShell module to manage users you might have found a disturbing change in the license affectation process. The DisabledPlans option, it is no more using the ServicePlan name but the ServicePlanId Guid. From an administrator point of view, this change is a […]

Creating an Azure Active Directory application for Let’s Encrypt in Azure App

Hello guys, I recently found out, thanks to my buddy Emmanuel, that Google held some references to my blog posts over HTTPS. But, prior to 12/20/2016 where I get noticed of the issue, the blog was not using HTTPS at all. The displayed certificat was the one fromAzure Websites, as my blog is an Azure […]

PowerShell check Office 365 Msol (Azure AD) and Exchange Online default domain

Hi Guys, As you know I juste had an issue with a client Office 365 tenant (Office 365 unsynced default between Msol and Excahnge Online). Here is wrapup function of the Cmdlets I wrote to check this situation: [ps]Function Get-MsolAndExODefaultDomain { $MsolDefaultDomain = (Get-MsolDomain | Where-Object { $_.IsDefault -eq $true }).Name $ExODefaultDomain = (Get-AcceptedDomain | […]