Updating Office 365 services with PowerShell

This is pretty simple but it escaped me for quite some time.  So, I'm posting it here in case I forget or it helps anyone else.

When you are updating a user license in Office 365 via PowerShell, you can do it by calling Set-MsolUserLicense.  If you are switching between two license SKUs, you can run the command to Add and Remove on the same command line

Set-MsolUserLicense -AddLicense <newSKU> -RemoveLicense <oldSKU> -LicenseOptions <newLicenseOptions>

This fails, however, if the SKUs are the same.  For example, enabling Exchange Online for a user while keeping the same SKU.  You will get a cryptic message about the SKU not being valid.    This is a fairly common case when services are phased in at a company.  For example, users may get Skype for Business Online and SharePoint Online, but Exchange Online may be licensed at mail migration.

In this case, the answer is simple but not documented clearly.

Connect-MsolService $LicenseOptions=New-MsolLicenseOptions -AccountSkuId <newSKU> -DisabledPlans <CommaSeperatedListOfDisabledFeatures> Set-MsolUserLicense -UserPrincipalName <upn> -LicenseOptions $LicenseOptions

This updates the LicenseOptions including disabled features without removing the existing license.  Pretty cool.