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 of information such as items include with pack we have.
The following command will list included service plans under our package
Get-MsolAccountSku | Where-Object {$_.SkuPartNumber -eq "ENTERPRISEPACK"} | ForEach-Object {$_.ServiceStatus} |Out-Gridview