New ServicePlans have been addet to M365 Copilot

Hi All,
A while ago, i did write an Azure Runbook that compares my Licenses every week.
I’ve received an Email this Week, stating that there have been added some new Service Plans to the “Microsoft_365_Copilot” SKU.


In the M365 Admin Center it looks like this


Let’s check the Licenses with PowerShell
Connect-Graph -Scopes User.ReadWrite.All, Organization.Read.All -NoWelcome
Get-MgUserLicenseDetail -UserId a.bohren@icewolf.ch


List the Service Plans of the “Microsoft_365_Copilot” SKU
$Licenses = Get-MgUserLicenseDetail -UserId a.bohren@icewolf.ch
$Licenses | where {$_.SkuPartNumber -eq "Microsoft_365_Copilot"} | select -ExpandProperty ServicePlans


Kind Regards
Andres Bohren

M365 Logo


PowerShell Logo
