Forum Discussion
Marvin Oco
Feb 18, 2019Iron Contributor
What are the SKU names for Office 365 Education A1, A3 and A5
What are the SKU names (powershell) for Office 365 Education A1, A3 and A5? Thanks
LinusCansby
Feb 18, 2019MVP
Hi,
A1 and A3 is the following.
"STANDARDPACK_STUDENT" = "Office 365 (Plan A1) for Students"
"ENTERPRISEPACK_STUDENT" = "Office 365 (Plan A3) for Students"
Did not find the SKU for A5, but the A4 was this (could be the same for A5)
"ENTERPRISEWITHSCAL_STUDENT" = "Office 365 (Plan A4) for Students"
Check this list by Robert Crane
https://github.com/directorcia/Office365/blob/master/o365-skus.ps1
If you have the license in your tenant you can run the following powershell cmd to check
Get-AzureADSubscribedSku | Select -Property Sku* | fl
tony-derricott
Feb 25, 2019Gold Contributor
The old
Get-MsolAccountSku |
command still works, as well.