Forum Discussion
Andy Kw
Feb 27, 2018Brass Contributor
How to know who has a pack?
I'm running the command below
Get-MsolAccountSku
And these are the results
PS C:\Users\KW> Get-MsolAccountSku
AccountSkuId ActiveUnits WarningUn...
- Feb 27, 2018
Get-MsolUser -ALL | Where { $_.Licenses.AccountSkuId -contains "avocarbon:STANDARDPACK" }
Pablo R. Ortiz
Feb 27, 2018Steel Contributor
Get-MsolUser -ALL | Where { $_.Licenses.AccountSkuId -contains "avocarbon:STANDARDPACK" }Andy Kw
Feb 28, 2018Brass Contributor
Thanks Pablo for the help, much appreciated.
- Pablo R. OrtizFeb 28, 2018Steel Contributoryou're welcome