This post will show you how to use Microsoft Graph PowerShell to view and manage your Office 365 Licenses.
You will learn to quickly find the answers to questions like:
- What licensing plans and services do you have?
- How many licenses are available, and how many are used?
- What users are consuming what licenses?
Detailed Office 365 licensing insights can help you save money for your organization.
To get an overview of license consumption in your organization PowerShell is a great tool.
Office 365 License Management From AD
However, for day-to-day management of licenses, you should use Easy365Manager.
Easy365Manager is a snap-in for Active Directory Users & Computers that lets you view and manage Office 365 licenses and mailboxes directly in user properties in Active Directory:
Even if you’re using group-assigned licenses, Easy365Manager makes it very convenient to see when a license has been applied to the user.
With Easy365Manager, you no longer need to log in to different Office 365 web consoles. Instead, you can manage everything from AD Users & Computers and even remove your on-premises Exchange Server.
Easy365Manager has a lot of features that make your admin life much easier. Check out 20+ use cases here.
Office 365 Licensing Overview
Before we dive into PowerShell and Office 365 licenses, let’s take a closer look at the structural objects of the Office 365 licensing model:
Office 365 Licensing Model
Object | Description | Sample value |
---|---|---|
Licensing Plan | A collection of one or more Service Plans (Services) | Office 365 Enterprise E5 |
Service Plan (Service) | A specific product, feature or capability in Office 365 | Exchange Online |
License | A license grants users access to Services contained in the Licensing Plan for which the license is purchased | – |
Active Units | Number of Licenses purchased for a specific Licensing Plan | 100 |
Consumed Units | Number of Licenses assigned to users | 57 |
The following diagram shows how these objects relate to one another:
An Office 365 Enterprise E5 license plan is assigned to (consumed by) a user in the above example. This means all service plans in the licensing plan are available to the user (but not necessarily enabled).
Office 365 Licensing PowerShell Commands
Now, let’s dive into the specific PowerShell commands used to view and manage Office 365 licenses.
First, you need to connect to Microsoft Graph PowerShell using the following CmdLet:
Connect-MgGraph -Scopes Directory.Read.All,User.Read.All
This command assumes you have already installed the Microsoft Graph PowerShell module.
Also, you need to consent to the Microsoft Graph PowerShell enterprise app to access the listed scopes.
List All Licensing Plans Using Get-MgSubscribedSku
Once connected, you can list all your licensing plans using the following command:
Get-MgSubscribedSku | select SkuPartNumber,SkuId,@{N='ActiveUnits';E={$_.PrepaidUnits.enabled}},ConsumedUnits
This will generate output similar to this:
SkuPartNumber SkuId ActiveUnits ConsumedUnits ------------ ------------------------------------ ----------- ------------- ENTERPRISEPREMIUM c7df2760-2c81-4ef7-b578-5b5392b571df 300 287 POWER_BI_PRO f8a1db68-be16-40ed-86d5-cb42ce701560 150 29 ENTERPRISEPACK 6fd2c87f-b296-42f0-b197-1e91e994b900 400 376 FLOW_FREE f30db892-07e9-47e9-837c-80727f46fd3d 10000 92 EXCHANGESTANDARD 4b9405b0-7788-4568-add1-99614e613b69 50 25 POWERFLOW_P2 ddfae3e3-fcb2-4174-8ebd-3023cb213c8b 2 2 SMB_APPS 90d8b3f8-712e-4f7b-aa1e-62e7ae6cbe96 200 0
The above output shows you the name, the SkuId, the active (available) units and the consumed units for each licensing plan.
List All Service Plans in Licensing Plan Using Get-MgSubscribedSku
To list all service plans included in a specific licensing plan, use the following command:
Get-MgSubscribedSku | Where-Object {$_.SkuPartNumber -eq "ENTERPRISEPACK"} | ForEach-Object {$_.ServicePlans} | ft ServicePlanName,ProvisioningStatus
This will generate output similar to this:
ServicePlan ProvisioningStatus ----------- ------------------ MICROSOFT_SEARCH Success WHITEBOARD_PLAN2 Success MIP_S_CLP1 Success MYANALYTICS_P2 Success BPOS_S_TODO_2 Success FORMS_PLAN_E3 Success STREAM_O365_E3 Success Deskless Success FLOW_O365_P2 Success POWERAPPS_O365_P2 Success TEAMS1 Success PROJECTWORKMANAGEMENT Success SWAY Success INTUNE_O365 Success YAMMER_ENTERPRISE Success RMS_S_ENTERPRISE Success OFFICESUBSCRIPTION Success MCOSTANDARD Success SHAREPOINTWAC Success SHAREPOINTENTERPRISE Success EXCHANGE_S_ENTERPRISE Success
List All Licensing Plans Assigned to User Using Get-MgUser
To list all licensing plans assigned to a single account, use the following command:
Get-MgUser -UserId tycho.brahe@azure.skrubbeltrang.com -Property AssignedPlans | Select -ExpandProperty AssignedPlans
This generates output like this:
AssignedDateTime CapabilityStatus Service ServicePlanId ---------------- ---------------- ------- ------------- 4/12/2023 6:57:33 AM Enabled exchange 2f442157-a11c-46b9-ae5b-6e39ff4e5849 4/12/2023 6:57:33 AM Enabled MicrosoftThreatProtection bf28f719-7844-4079-9c78-c1307898e192 4/12/2023 6:57:33 AM Enabled exchange 199a5c09-e0ca-4e37-8f7c-b05d533e1ea2 4/12/2023 6:57:33 AM Enabled TeamspaceAPI 57ff2da0-773e-42df-b2af-ffb7a2317929 4/12/2023 6:57:33 AM Enabled OfficeForms e212cbc7-0961-4c40-9825-01117710dcb1 4/12/2023 6:57:33 AM Enabled MicrosoftOffice 531ee2f8-b1cb-453b-9c21-d2180d014ca5 4/12/2023 6:57:33 AM Enabled MicrosoftCommunicationsOnline 4828c8ec-dc2e-4779-b502-87ac9ce28ab7 11/29/2022 1:24:17 PM Enabled exchange efb87545-963c-4e0d-99df-69c6916d9eb0
As you can see in this output, eight licensing plans are assigned to this user.
List All Users Using a Licensing Plan Using Get-MgUser
To list all users using (consuming) a specific licensing plan, use the following command:
Get-MgUser -Property AssignedLicenses,DisplayName -Filter "assignedLicenses/any(u:u/skuId eq c42b9cae-ea4f-4ab7-9717-81576235ccac)" | ft DisplayName
This will generate output similar to this:
DisplayName ----------- Tycho Brahe Lene Hau Niels Bohr Hans Christian Orsted Ole Romer Holger Bech Nielsen Jens Martin Knudsen
Assigning and Disabling Service Plans Using Set-MgUserLicense
Sometimes, you don’t want to assign a user all services in a licensing plan.
To achieve this, create a license object that identifies the Licensing Plan to assign and the Service Plans (in the Licensing Plan) you want to disable.
The following example shows how to create a licensing object assigning the E5 Licensing Plan with Microsoft Teams and Microsoft Intune disabled:
$E5Sku = Get-MgSubscribedSku -All | ? { $_.SkuPartNumber -eq 'SPE_E5'}
$DisabledPlans = $E5Sku.ServicePlans | Where ServicePlanName -in ("TEAMS1", "INTUNE_A") | Select -ExpandProperty ServicePlanId
$LicenseObject = @(
@{
SkuId = $E5Sku.SkuId
DisabledPlans = $DisabledPlans
}
)
Set-MgUserLicense -UserId sophia.brahe@azure.skrubbeltrang.com -AddLicenses $LicenseObject -RemoveLicenses @()
How to Save Money on Office 365 Licensing
You should have a process that continuously ensures your organization is not over-licensed. It’s not just a matter of doing a one-time survey – you should perform it regularly.
Also, make sure that existing processes take Office 365 licensing into account. E.g., your user life cycle management procedures should free up user licenses whenever users leave the company.
Let’s try to identify (licensed) user mailboxes that seem inactive. Use the following PowerShell script to identify mailboxes that didn’t see a login for the last 90 days:
Connect-ExchangeOnline
Get-Mailbox -RecipientTypeDetails UserMailbox | Where-Object {$_.SkuAssigned -eq $true} | Get-MailboxStatistics | Where-Object {$_.LastLogonTime -lt (Get-Date).AddDays(-90)} | Select DisplayName,LastLogonTime | ft
Disconnect-ExchangeOnline
Review the output to check if users have left the company or if they should perhaps be converted to shared mailboxes (that don’t require an Office 365 license).
Office 365 Licensing Plan Names
Finally, let’s look at the naming convention on Office 365 licensing.
In daily speech, we refer to Office 365 licensing plans using their display names, e.g., Office 365 E5, Office 365 Small Business, Microsoft Teams Essentials, etc. Unfortunately, these names are not used in the Office 365 Graph, so we must translate them manually.
E.g., to find all users assigned with Office 365 E5, we need to look for “ENTERPRISEPREMIUM.” To find users assigned with Office 365 Small Business, we must look for “LITEPACK”, etc.
(for a list of Service Plan names, go here)
You can see the complete list of Office 365 licensing names here (extracted from this site):
Office 365 Licensing Plan Names
Display Name | ID |
---|---|
Azure Active Directory Basic | AAD_BASIC |
Azure Active Directory Premium P1 | AAD_PREMIUM |
Azure Active Directory Premium P1 for Faculty | AAD_PREMIUM_FACULTY |
Azure Active Directory Premium P2 | AAD_PREMIUM_P2 |
Office 365 Cloud App Security | ADALLOM_O365 |
Microsoft Cloud App Security | ADALLOM_STANDALONE |
Advanced Communications | ADV_COMMS |
Microsoft Defender for Identity | ATA |
Microsoft Defender for Office 365 (Plan 1) | ATP_ENTERPRISE |
Microsoft Defender for Office 365 (Plan 1) Faculty | ATP_ENTERPRISE_FACULTY |
Microsoft Defender for Office 365 (Plan 1) GCC | ATP_ENTERPRISE_GOV |
Microsoft Dynamics AX7 User Trial | AX7_USER_TRIAL |
Microsoft 365 Business Voice (without calling plan) | BUSINESS_VOICE_DIRECTROUTING |
Microsoft 365 Business Voice (without Calling Plan) for US | BUSINESS_VOICE_DIRECTROUTING_MED |
Microsoft 365 Business Voice | BUSINESS_VOICE_MED2 |
Microsoft 365 Business Voice (US) | BUSINESS_VOICE_MED2_TELCO |
Power Virtual Agents Viral Trial | CCIBOTS_PRIVPREV_VIRAL |
Common Data Service Database Capacity | CDS_DB_CAPACITY |
Common Data Service Database Capacity for Government | CDS_DB_CAPACITY_GOV |
Common Data Service for Apps File Capacity | CDS_FILE_CAPACITY |
Common Data Service Log Capacity | CDS_LOG_CAPACITY |
AI Builder Capacity add-on | CDSAICAPACITY |
Compliance Manager Premium Assessment Add-On for GCC | CMPA_addon_GCC |
Windows 365 Business 1 vCPU 2 GB 64 GB | CPC_B_1C_2RAM_64GB |
Windows 365 Business 2 vCPU 4 GB 128 GB | CPC_B_2C_4RAM_128GB |
Windows 365 Business 2 vCPU 4 GB 256 GB | CPC_B_2C_4RAM_256GB |
Windows 365 Business 2 vCPU 4 GB 64 GB | CPC_B_2C_4RAM_64GB |
Windows 365 Business 2 vCPU 8 GB 128 GB | CPC_B_2C_8RAM_128GB |
Windows 365 Business 2 vCPU 8 GB 256 GB | CPC_B_2C_8RAM_256GB |
Windows 365 Business 4 vCPU 16 GB 128 GB | CPC_B_4C_16RAM_128GB |
Windows 365 Business 4 vCPU 16 GB 128 GB (with Windows Hybrid Benefit) | CPC_B_4C_16RAM_128GB_WHB |
Windows 365 Business 4 vCPU 16 GB 256 GB | CPC_B_4C_16RAM_256GB |
Windows 365 Business 4 vCPU 16 GB 512 GB | CPC_B_4C_16RAM_512GB |
Windows 365 Business 8 vCPU 32 GB 128 GB | CPC_B_8C_32RAM_128GB |
Windows 365 Business 8 vCPU 32 GB 256 GB | CPC_B_8C_32RAM_256GB |
Windows 365 Business 8 vCPU 32 GB 512 GB | CPC_B_8C_32RAM_512GB |
Windows 365 Enterprise 1 vCPU 2 GB 64 GB | CPC_E_1C_2GB_64GB |
Windows 365 Enterprise 2 vCPU 4 GB 128 GB | CPC_E_2C_4GB_128GB |
Windows 365 Enterprise 2 vCPU 4 GB 256 GB | CPC_E_2C_4GB_256GB |
Windows 365 Enterprise 2 vCPU 4 GB 64 GB | CPC_E_2C_4GB_64GB |
Windows 365 Enterprise 2 vCPU 8 GB 128 GB | CPC_E_2C_8GB_128GB |
Windows 365 Enterprise 2 vCPU 8 GB 256 GB | CPC_E_2C_8GB_256GB |
Windows 365 Enterprise 4 vCPU 16 GB 128 GB | CPC_E_4C_16GB_128GB |
Windows 365 Enterprise 4 vCPU 16 GB 256 GB | CPC_E_4C_16GB_256GB |
Windows 365 Enterprise 4 vCPU 16 GB 512 GB | CPC_E_4C_16GB_512GB |
Windows 365 Enterprise 8 vCPU 32 GB 128 GB | CPC_E_8C_32GB_128GB |
Windows 365 Enterprise 8 vCPU 32 GB 256 GB | CPC_E_8C_32GB_256GB |
Windows 365 Enterprise 8 vCPU 32 GB 512 GB | CPC_E_8C_32GB_512GB |
Windows 365 Enterprise 2 vCPU 4 GB 128 GB (Preview) | CPC_LVL_1 |
Windows 365 Enterprise 2 vCPU 8 GB 128 GB (Preview) | CPC_LVL_2 |
Windows 365 Enterprise 4 vCPU 16 GB 256 GB (Preview) | CPC_LVL_3 |
Dynamics 365 Hybrid Connector | CRM_HYBRIDCONNECTOR |
Dynamics 365 Enterprise Edition – Additional Portal (Qualified Offer) | CRM_ONLINE_PORTAL |
Dynamics 365 – Additional Production Instance (Qualified Offer) | CRMINSTANCE |
Microsoft Dynamics CRM Online Basic | CRMPLAN2 |
Microsoft Dynamics CRM Online | CRMSTANDARD |
Dynamics 365 – Additional Database Storage (Qualified Offer) | CRMSTORAGE |
Dynamics 365 – Additional Non-Production Instance (Qualified Offer) | CRMTESTINSTANCE |
Dynamics 365 for Customer Service Enterprise Attach to Qualifying Dynamics 365 Base Offer A | D365_CUSTOMER_SERVICE_ENT_ATTACH |
Dynamics 365 for Field Service Attach to Qualifying Dynamics 365 Base Offer | D365_FIELD_SERVICE_ATTACH |
Dynamics 365 for Marketing USL | D365_MARKETING_USER |
Dynamics 365 Sales Enterprise Attach to Qualifying Dynamics 365 Base Offer | D365_SALES_ENT_ATTACH |
Dynamics 365 For Sales Professional | D365_SALES_PRO |
Dynamics 365 Sales Professional Attach to Qualifying Dynamics 365 Base Offer | D365_SALES_PRO_ATTACH |
Dynamics 365 For Sales Professional Trial | D365_SALES_PRO_IW |
Microsoft Defender for Endpoint P1 | DEFENDER_ENDPOINT_P1 |
Office 365 F3 | DESKLESSPACK |
Office 365 E3 Developer | DEVELOPERPACK |
Microsoft 365 E5 Developer (without Windows and Audio Conferencing) | DEVELOPERPACK_E5 |
Microsoft Relationship Sales solution | DYN365_ ENTERPRISE _RELATIONSHIP_SALES |
Dynamics 365 Customer Service Insights Trial | DYN365_AI_SERVICE_INSIGHTS |
Dynamics 365 Asset Management Addl Assets | DYN365_ASSETMANAGEMENT |
Dynamics 365 Business Central Additional Environment Addon | DYN365_BUSCENTRAL_ADD_ENV_ADDON |
Dynamics 365 Business Central Database Capacity | DYN365_BUSCENTRAL_DB_CAPACITY |
Dynamics 365 Business Central Essentials | DYN365_BUSCENTRAL_ESSENTIAL |
Dynamics 365 Business Central Premium | DYN365_BUSCENTRAL_PREMIUM |
Dynamics 365 Business Central Team Members | DYN365_BUSCENTRAL_TEAM_MEMBER |
Dynamics 365 for Marketing Business Edition | DYN365_BUSINESS_MARKETING |
Dynamics 365 for Customer Service Chat | DYN365_CS_CHAT |
Dynamics 365 Customer Insights vTrial | DYN365_CUSTOMER_INSIGHTS_VIRAL |
Dynamics 365 Customer Service Professional | DYN365_CUSTOMER_SERVICE_PRO |
Dynamics 365 Customer Voice Additional Responses | DYN365_CUSTOMER_VOICE_ADDON |
Dynamics 365 Customer Voice | DYN365_CUSTOMER_VOICE_BASE |
Dynamics 365 for Case Management Enterprise Edition | DYN365_ENTERPRISE_CASE_MANAGEMENT |
Dynamics 365 for Customer Service Enterprise Edition | DYN365_ENTERPRISE_CUSTOMER_SERVICE |
Dynamics 365 for Field Service Enterprise Edition | DYN365_ENTERPRISE_FIELD_SERVICE |
Dynamics 365 P1 Tria for Information Workers | DYN365_ENTERPRISE_P1_IW |
Dynamics 365 Customer Engagement Plan | DYN365_ENTERPRISE_PLAN1 |
Dynamics 365 for Sales Enterprise Edition | DYN365_ENTERPRISE_SALES |
Dynamics 365 for Sales and Customer Service Enterprise Edition | DYN365_ENTERPRISE_SALES_CUSTOMERSERVICE |
Dynamics 365 for Team Members Enterprise Edition | DYN365_ENTERPRISE_TEAM_MEMBERS |
Dynamics 365 Finance | DYN365_FINANCE |
Dynamics 365 Business Central External Accountant | DYN365_FINANCIALS_ACCOUNTANT_SKU |
Dynamics 365 for Financials Business Edition | DYN365_FINANCIALS_BUSINESS_SKU |
Sensor Data Intelligence Additional Machines Add-in for Dynamics 365 Supply Chain Management | DYN365_IOT_INTELLIGENCE_ADDL_MACHINES |
Sensor Data Intelligence Scenario Add-in for Dynamics 365 Supply Chain Management | DYN365_IOT_INTELLIGENCE_SCENARIO |
Dynamics 365 for Marketing Attach | DYN365_MARKETING_APP_ATTACH |
Dynamics 365 for Marketing Additional Application | DYN365_MARKETING_APPLICATION_ADDON |
Dynamics 365 for Marketing Addnl Contacts Tier 5 | DYN365_MARKETING_CONTACT_ADDON_T5 |
Dynamics 365 for Marketing Additional Non-Prod Application | DYN365_MARKETING_SANDBOX_APPLICATION_ADDON |
Dynamics 365 Regulatory Service – Enterprise Edition Trial | DYN365_REGULATORY_SERVICE |
Dynamics 365 Sales Premium | DYN365_SALES_PREMIUM |
Dynamics 365 for Supply Chain Management | DYN365_SCM |
Dynamics 365 Team Members | DYN365_TEAM_MEMBERS |
Dynamics 365 Customer Service Enterprise Viral Trial | Dynamics_365_Customer_Service_Enterprise_viral_trial |
Dynamics 365 Field Service Viral Trial | Dynamics_365_Field_Service_Enterprise_viral_trial |
Dynamics 365 UNF OPS Plan ENT Edition | Dynamics_365_for_Operations |
Dynamics 365 Operations – Device | Dynamics_365_for_Operations_Devices |
Dynamics 365 Operations – Sandbox Tier 2:Standard Acceptance Testing | Dynamics_365_for_Operations_Sandbox_Tier2_SKU |
Dynamics 365 Operations – Sandbox Tier 4:Standard Performance Testing | Dynamics_365_for_Operations_Sandbox_Tier4_SKU |
Dynamics 365 Talent: Attract | Dynamics_365_Hiring_SKU |
Dynamics 365 Talent: Onboard | DYNAMICS_365_ONBOARDING_SKU |
Dynamics 365 Sales Premium Viral Trial | Dynamics_365_Sales_Premium_Viral_Trial |
Windows 10/11 Enterprise E3 VDA | E3_VDA_only |
Enterprise Mobility + Security E3 | EMS |
Enterprise Mobility + Security A3 for Faculty | EMS_EDU_FACULTY |
Enterprise Mobility + Security G3 GCC | EMS_GOV |
Enterprise Mobility + Security E5 | EMSPREMIUM |
Enterprise Mobility + Security G5 GCC | EMSPREMIUM_GOV |
Office 365 E3 | ENTERPRISEPACK |
Office 365 G3 GCC | ENTERPRISEPACK_GOV |
Office 365 E3_USGOV_DOD | ENTERPRISEPACK_USGOV_DOD |
Office 365 E3_USGOV_GCCHIGH | ENTERPRISEPACK_USGOV_GCCHIGH |
Office 365 A3 for faculty | ENTERPRISEPACKPLUS_FACULTY |
Office 365 A3 for students | ENTERPRISEPACKPLUS_STUDENT |
Office 365 E5 | ENTERPRISEPREMIUM |
Office 365 A5 for faculty | ENTERPRISEPREMIUM_FACULTY |
Office 365 G5 GCC | ENTERPRISEPREMIUM_GOV |
Office 365 E5 Without Audio Conferencing | ENTERPRISEPREMIUM_NOPSTNCONF |
Office 365 A5 for students | ENTERPRISEPREMIUM_STUDENT |
Office 365 E4 | ENTERPRISEWITHSCAL |
Exchange Online Protection | EOP_ENTERPRISE |
Exchange Enterprise CAL Services (EOP DLP) | EOP_ENTERPRISE_PREMIUM |
Office 365 Advanced Compliance | EQUIVIO_ANALYTICS |
Office 365 Advanced Compliance for GCC | EQUIVIO_ANALYTICS_GOV |
Exchange Online Essentials | EXCHANGE_S_ESSENTIALS |
Exchange Online Archiving for Exchange Server | EXCHANGEARCHIVE |
Exchange Online Archiving for Exchange Online | EXCHANGEARCHIVE_ADDON |
Exchange Online Kiosk | EXCHANGEDESKLESS |
Exchange Online (Plan 2) | EXCHANGEENTERPRISE |
Exchange Online Essentials (ExO P1 Based) | EXCHANGEESSENTIALS |
Exchange Online (Plan 1) | EXCHANGESTANDARD |
Exchange Online (Plan 1) for Alumni with Yammer | EXCHANGESTANDARD_ALUMNI |
Exchange Online (Plan 1) for GCC | EXCHANGESTANDARD_GOV |
Exchange Online (Plan 1) for Students | EXCHANGESTANDARD_STUDENT |
Exchange Online POP | EXCHANGETELCO |
Microsoft Threat Experts – Experts on Demand | EXPERTS_ON_DEMAND |
Power Automate per flow plan | FLOW_BUSINESS_PROCESS |
Microsoft Power Automate Free | FLOW_FREE |
Microsoft Power Automate Plan 2 | FLOW_P2 |
Power Automate per user plan | FLOW_PER_USER |
Power Automate per user plan dept | FLOW_PER_USER_DEPT |
Power Automate per user plan for Government | FLOW_PER_USER_GCC |
Dynamics 365 Customer Voice Trial | FORMS_PRO |
Dynamics 365 Customer Voice Additional Responses | Forms_Pro_AddOn |
Dynamics 365 Customer Voice USL | Forms_Pro_USL |
Dynamics 365 Guides | GUIDES_USER |
Microsoft 365 E5 Security | IDENTITY_THREAT_PROTECTION |
Microsoft 365 E5 Security for EMS E5 | IDENTITY_THREAT_PROTECTION_FOR_EMS_E5 |
Microsoft 365 E5 Compliance | INFORMATION_PROTECTION_COMPLIANCE |
SharePoint Syntex | Intelligent_Content_Services |
Intune | INTUNE_A |
Microsoft Intune Device | INTUNE_A_D |
Microsoft Intune Device for Government | INTUNE_A_D_GOV |
Intune for Education | INTUNE_EDU |
Microsoft Intune SMB | INTUNE_SMB |
Microsoft Imagine Academy | IT_ACADEMY_AD |
Office 365 Small Business | LITEPACK |
Office 365 Small Business Premium | LITEPACK_P2 |
Microsoft 365 E5 Suite features | M365_E5_SUITE_COMPONENTS |
Microsoft 365 F1 | M365_F1 |
Microsoft 365 F1 | M365_F1_COMM |
Microsoft 365 F3 GCC | M365_F1_GOV |
Microsoft 365 G3 GCC | M365_G3_GOV |
Microsoft 365 GCC G5 | M365_G5_GCC |
Microsoft 365 Security and Compliance for Firstline Workers | M365_SECURITY_COMPLIANCE_FOR_FLW |
Microsoft 365 A1 | M365EDU_A1 |
Microsoft 365 A3 for Faculty | M365EDU_A3_FACULTY |
Microsoft 365 A3 for Students | M365EDU_A3_STUDENT |
Microsoft 365 A3 for students use benefit | M365EDU_A3_STUUSEBNFT |
Microsoft 365 A3 – Unattended License for students use benefit | M365EDU_A3_STUUSEBNFT_RPA1 |
Microsoft 365 A5 for Faculty | M365EDU_A5_FACULTY |
Microsoft 365 A5 without Audio Conferencing for students use benefit | M365EDU_A5_NOPSTNCONF_STUUSEBNFT |
Microsoft 365 A5 for Students | M365EDU_A5_STUDENT |
Microsoft 365 A5 for students use benefit | M365EDU_A5_STUUSEBNFT |
Microsoft Teams Shared Devices | MCOCAP |
Microsoft Teams Shared Devices for GCC | MCOCAP_GOV |
Microsoft Teams Phone Standard | MCOEV |
Microsoft Teams Phone Standard for DOD | MCOEV_DOD |
Microsoft Teams Phone Standard for Faculty | MCOEV_FACULTY |
Microsoft Teams Phone Standard for GCCHIGH | MCOEV_GCCHIGH |
Microsoft Teams Phone Standard for GCC | MCOEV_GOV |
Microsoft Teams Phone Standard for Students | MCOEV_STUDENT |
Microsoft Teams Phone Standard for TELSTRA | MCOEV_TELSTRA |
Microsoft Teams Phone Standard_USGOV_DOD | MCOEV_USGOV_DOD |
Microsoft Teams Phone Standard_USGOV_GCCHIGH | MCOEV_USGOV_GCCHIGH |
Microsoft Teams Phone Standard for Small and Medium Business | MCOEVSMB_1 |
Skype for Business Online (Plan 1) | MCOIMP |
Microsoft 365 Audio Conferencing Pay-Per-Minute – EA | MCOMEETACPEA |
Microsoft 365 Audio Conferencing | MCOMEETADV |
Microsoft 365 Audio Conferencing for GCC | MCOMEETADV_GOV |
Microsoft 365 Domestic Calling Plan for GCC | MCOPSTN_1_GOV |
Microsoft 365 Domestic Calling Plan (120 Minutes) | MCOPSTN_5 |
Skype for Business PSTN Domestic Calling | MCOPSTN1 |
Skype for Business PSTN Domestic and International Calling | MCOPSTN2 |
Skype for Business PSTN Domestic Calling (120 Minutes) | MCOPSTN5 |
Communications Credtis | MCOPSTNC |
TELSTRA Calling for O365 | MCOPSTNEAU2 |
Skype for Business PSTN Usage Calling Plan | MCOPSTNPP |
Skype for Business Online (Plan 2) | MCOSTANDARD |
Teams Phone with Calling Plan | MCOTEAMS_ESSENTIALS |
Microsoft Defender for Endpoint Server | MDATP_Server |
Microsoft Defender for Endpoint P2_XPLAT | MDATP_XPLAT |
Microsoft Teams Rooms Standard | MEETING_ROOM |
Microsoft Teams Rooms Standard without Audio Conferencing | MEETING_ROOM_NOAUDIOCONF |
Microsoft Azure Multi-Factor Authentication | MFA_STANDALONE |
Microsoft 365 E3 (500 seats min)_HUB | Microsoft_365_E3 |
Microsoft 365 E5 (500 seats min)_HUB | Microsoft_365_E5 |
Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB | Microsoft_365_E5_without_Audio_Conferencing |
Microsoft Business Center | MICROSOFT_BUSINESS_CENTER |
App governance add-on to Microsoft Defender for Cloud Apps | Microsoft_Cloud_App_Security_App_Governance_Add_On |
Microsoft Intune Suite | Microsoft_Intune_Suite |
Dynamics 365 Remote Assist | MICROSOFT_REMOTE_ASSIST |
Dynamics 365 Remote Assist HoloLens | MICROSOFT_REMOTE_ASSIST_HOLOLENS |
Microsoft Teams Audio Conferencing select dial-out | Microsoft_Teams_Audio_Conferencing_select_dial_out |
Microsoft Teams Premium | Microsoft_Teams_Premium |
Microsoft Teams Rooms Basic | Microsoft_Teams_Rooms_Basic |
Microsoft Teams Rooms Basic without Audio Conferencing | Microsoft_Teams_Rooms_Basic_without_Audio_Conferencing |
Microsoft Teams Rooms Pro | Microsoft_Teams_Rooms_Pro |
Microsoft Teams Rooms Pro without Audio Conferencing | Microsoft_Teams_Rooms_Pro_without_Audio_Conferencing |
Office 365 Midsize Business | MIDSIZEPACK |
Microsoft Teams Trial | MS_TEAMS_IW |
Teams Rooms Premium | MTR_PREM |
Nonprofit Portal | NONPROFIT_PORTAL |
Microsoft 365 Apps for Business | O365_BUSINESS |
Microsoft 365 Business Basic | O365_BUSINESS_ESSENTIALS |
Microsoft 365 Business Standard | O365_BUSINESS_PREMIUM |
Microsoft 365 Apps for enterprise (device) | OFFICE_PROPLUS_DEVICE1 |
Multi-Geo Capabilities in Office 365 | OFFICE365_MULTIGEO |
Microsoft 365 Apps for Enterprise | OFFICESUBSCRIPTION |
Microsoft 365 Apps for Faculty | OFFICESUBSCRIPTION_FACULTY |
Microsoft 365 Apps for Students | OFFICESUBSCRIPTION_STUDENT |
Power BI Premium P1 | PBI_PREMIUM_P1_ADDON |
Power BI Premium Per User | PBI_PREMIUM_PER_USER |
Power BI Premium Per User Add-On | PBI_PREMIUM_PER_USER_ADDON |
Power BI Premium Per User Dept | PBI_PREMIUM_PER_USER_DEPT |
Microsoft Teams Phone Resource Account | PHONESYSTEM_VIRTUALUSER |
Microsoft Teams Phone Resource Account for GCC | PHONESYSTEM_VIRTUALUSER_GOV |
Power BI for Office 365 Add-On | POWER_BI_ADDON |
Power BI | POWER_BI_INDIVIDUAL_USER |
Power BI Pro | POWER_BI_PRO |
Power BI Pro CE | POWER_BI_PRO_CE |
Power BI Pro Dept | POWER_BI_PRO_DEPT |
Power BI Pro for Faculty | POWER_BI_PRO_FACULTY |
Power BI (free) | POWER_BI_STANDARD |
Power Pages vTrial for Makers | Power_Pages_vTrial_for_Makers |
Microsoft Power Apps for Developer | POWERAPPS_DEV |
Power Apps and Logic Flows | POWERAPPS_INDIVIDUAL_USER |
PowerApps Plan 1 for Government | POWERAPPS_P1_GOV |
Power Apps per app plan | POWERAPPS_PER_APP |
PowerApps per app baseline access | POWERAPPS_PER_APP_IW |
Power Apps per app plan (1 app or portal) | POWERAPPS_PER_APP_NEW |
Power Apps per user plan | POWERAPPS_PER_USER |
Power Apps per user plan for Government | POWERAPPS_PER_USER_GCC |
Power Apps Portals login capacity add-on Tier 2 (10 unit min) | POWERAPPS_PORTALS_LOGIN_T2 |
Power Apps Portals login capacity add-on Tier 2 (10 unit min) for Government | POWERAPPS_PORTALS_LOGIN_T2_GCC |
Power Apps Portals login capacity add-on Tier 3 (50 unit min) | POWERAPPS_PORTALS_LOGIN_T3 |
Power Apps Portals page view capacity add-on | POWERAPPS_PORTALS_PAGEVIEW |
Power Apps Portals page view capacity add-on for Government | POWERAPPS_PORTALS_PAGEVIEW_GCC |
Microsoft Power Apps Plan 2 Trial | POWERAPPS_VIRAL |
Power Automate per user with attended RPA plan | POWERAUTOMATE_ATTENDED_RPA |
Power Automate unattended RPA add-on | POWERAUTOMATE_UNATTENDED_RPA |
Power BI Pro for GCC | POWERBI_PRO_GOV |
Microsoft Power Apps Plan 2 (Qualified Offer) | POWERFLOW_P2 |
Privacy Management – risk | PRIVACY_MANAGEMENT_RISK |
Privacy Management – risk for EDU | PRIVACY_MANAGEMENT_RISK_EDU |
Privacy Management – risk GCC | PRIVACY_MANAGEMENT_RISK_GCC |
Privacy Management – risk_USGOV_DOD | PRIVACY_MANAGEMENT_RISK_USGOV_DOD |
Privacy Management – risk_USGOV_GCCHIGH | PRIVACY_MANAGEMENT_RISK_USGOV_GCCHIGH |
Privacy Management – subject rights request (1) for EDU | PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_1_EDU_V2 |
Privacy Management – subject rights request (1) | PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_1_V2 |
Privacy Management – subject rights request (1) GCC | PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_1_V2_GCC |
Privacy Management – subject rights request (1) USGOV_DOD | PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_1_V2_USGOV_DOD |
Privacy Management – subject rights request (1) USGOV_GCCHIGH | PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_1_V2_USGOV_GCCHIGH |
Privacy Management – subject rights request (10) for EDU | PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_10_EDU_V2 |
Privacy Management – subject rights request (10) | PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_10_V2 |
Privacy Management – subject rights request (10) GCC | PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_10_V2_GCC |
Privacy Management – subject rights request (10) USGOV_DOD | PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_10_V2_USGOV_DOD |
Privacy Management – subject rights request (10) USGOV_GCCHIGH | PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_10_V2_USGOV_GCCHIGH |
Privacy Management – subject rights request (100) for EDU | PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_100_EDU_V2 |
Privacy Management – subject rights request (100) | PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_100_V2 |
Privacy Management – subject rights request (100) GCC | PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_100_V2_GCC |
Privacy Management – subject rights request (100) USGOV_DOD | PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_100_V2_USGOV_DOD |
Privacy Management – subject rights request (100) USGOV_GCCHIGH | PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_100_V2_USGOV_GCCHIGH |
Privacy Management – subject rights request (50) | PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_50 |
Privacy Management – subject rights request (50) for EDU | PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_50_EDU_V2 |
Privacy Management – subject rights request (50) | PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_50_V2 |
Dynamics 365 Business Central for IWs | PROJECT_MADEIRA_PREVIEW_IW_SKU |
Project Plan 1 | PROJECT_P1 |
Project Plan 1 (for Department) | PROJECT_PLAN1_DEPT |
Project Plan 3 (for Department) | PROJECT_PLAN3_DEPT |
Project for Office 365 | PROJECTCLIENT |
Project Online Essentials | PROJECTESSENTIALS |
Project Online Essentials for Faculty | PROJECTESSENTIALS_FACULTY |
Project Online Essentials for GCC | PROJECTESSENTIALS_GOV |
Project Online Premium Without Project Client | PROJECTONLINE_PLAN_1 |
Project Online With Project for Office 365 | PROJECTONLINE_PLAN_2 |
Project Online Premium | PROJECTPREMIUM |
Project Plan 5 for GCC | PROJECTPREMIUM_GOV |
Project Plan 3 | PROJECTPROFESSIONAL |
Project Plan 3 for Faculty | PROJECTPROFESSIONAL_FACULTY |
Project Plan 3 for GCC | PROJECTPROFESSIONAL_GOV |
Azure Information Protection Plan 1 | RIGHTSMANAGEMENT |
Rights Management Adhoc | RIGHTSMANAGEMENT_ADHOC |
Rights Management Service Basic Content Protection | RMSBASIC |
SharePoint Online (Plan 2) | SHAREPOINTENTERPRISE |
SharePoint Online (Plan 1) | SHAREPOINTSTANDARD |
Office 365 Extra File Storage | SHAREPOINTSTORAGE |
Office 365 Extra File Storage for GCC | SHAREPOINTSTORAGE_GOV |
Dynamics 365 for Talent | SKU_Dynamics_365_for_HCM_Trial |
Business Apps (free) | SMB_APPS |
Microsoft 365 Apps for Business | SMB_BUSINESS |
Microsoft 365 Business Basic | SMB_BUSINESS_ESSENTIALS |
Microsoft 365 Business Standard – Prepaid Legacy | SMB_BUSINESS_PREMIUM |
Dynamics 365 AI for Market Insights (Preview) | SOCIAL_ENGAGEMENT_APP_USER |
Microsoft 365 Business Premium | SPB |
Microsoft 365 E3 | SPE_E3 |
Microsoft 365 E3 – Unattended License | SPE_E3_RPA1 |
Microsoft 365 E3_USGOV_DOD | SPE_E3_USGOV_DOD |
Microsoft 365 E3_USGOV_GCCHIGH | SPE_E3_USGOV_GCCHIGH |
Microsoft 365 E5 | SPE_E5 |
Microsoft 365 E5 with Calling Minutes | SPE_E5_CALLINGMINUTES |
Microsoft 365 E5 without Audio Conferencing | SPE_E5_NOPSTNCONF |
Microsoft 365 F3 | SPE_F1 |
Microsoft 365 F5 Compliance Add-on | SPE_F5_COMP |
Microsoft 365 F5 Compliance Add-on AR (DOD)_USGOV_DOD | SPE_F5_COMP_AR_D_USGOV_DOD |
Microsoft 365 F5 Compliance Add-on AR_USGOV_GCCHIGH | SPE_F5_COMP_AR_USGOV_GCCHIGH |
Microsoft 365 F5 Compliance Add-on GCC | SPE_F5_COMP_GCC |
Microsoft 365 F5 Security Add-on | SPE_F5_SEC |
Microsoft 365 F5 Security + Compliance Add-on | SPE_F5_SECCOMP |
App Connect IW | SPZA_IW |
Office 365 E1 | STANDARDPACK |
Office 365 G1 GCC | STANDARDPACK_GOV |
Office 365 E2 | STANDARDWOFFPACK |
Office 365 A1 for faculty | STANDARDWOFFPACK_FACULTY |
Office 365 A1 Plus for faculty | STANDARDWOFFPACK_IW_FACULTY |
Office 365 A1 Plus for students | STANDARDWOFFPACK_IW_STUDENT |
Office 365 A1 for students | STANDARDWOFFPACK_STUDENT |
Microsoft Stream | STREAM |
Microsoft Stream Plan 2 | STREAM_P2 |
Microsoft Stream Storage Add-On (500 GB) | STREAM_STORAGE |
Microsoft Teams Commercial Cloud | TEAMS_COMMERCIAL_TRIAL |
Microsoft Teams Essentials | Teams_Ess |
Microsoft Teams Exploratory | TEAMS_EXPLORATORY |
Microsoft Teams (Free) | TEAMS_FREE |
Microsoft Defender for Office 365 (Plan 2) | THREAT_INTELLIGENCE |
Microsoft Defender for Office 365 (Plan 2) GCC | THREAT_INTELLIGENCE_GOV |
Viva Topics | TOPIC_EXPERIENCES |
Microsoft Defender Vulnerability Management Add-on | TVM_Premium_Add_on |
Universal Print | UNIVERSAL_PRINT |
Power Virtual Agent | VIRTUAL_AGENT_BASE |
Power Virtual Agent User License | VIRTUAL_AGENT_USL |
Visio Plan 1 | VISIO_PLAN1_DEPT |
Visio Plan 2 | VISIO_PLAN2_DEPT |
Visio Online Plan 2 | VISIOCLIENT |
Visio Plan 2 for GCC | VISIOCLIENT_GOV |
Visio Online Plan 1 | VISIOONLINE_PLAN1 |
Microsoft Viva Suite | VIVA |
OneDrive for Business (Plan 2) | WACONEDRIVEENTERPRISE |
OneDrive for Business (Plan 1) | WACONEDRIVESTANDARD |
Microsoft Defender for Endpoint | WIN_DEF_ATP |
Windows 10/11 Enterprise E5 (Original) | WIN_ENT_E5 |
Windows 10 Enterprise A3 for faculty | WIN10_ENT_A3_FAC |
Windows 10 Enterprise A3 for students | WIN10_ENT_A3_STU |
Windows 10 Enterprise E3 | WIN10_PRO_ENT_SUB |
Windows 10 Enterprise E3 | WIN10_VDA_E3 |
Windows 10 Enterprise E5 | WIN10_VDA_E5 |
Windows 365 Shared Use 2 vCPU 4 GB 128 GB | Windows_365_S_2vCPU_4GB_128GB |
Windows 365 Shared Use 2 vCPU 4 GB 256 GB | Windows_365_S_2vCPU_4GB_256GB |
Windows 365 Shared Use 2 vCPU 4 GB 64 GB | Windows_365_S_2vCPU_4GB_64GB |
Windows 365 Shared Use 2 vCPU 8 GB 128 GB | Windows_365_S_2vCPU_8GB_128GB |
Windows 365 Shared Use 2 vCPU 8 GB 256 GB | Windows_365_S_2vCPU_8GB_256GB |
Windows 365 Shared Use 4 vCPU 16 GB 128 GB | Windows_365_S_4vCPU_16GB_128GB |
Windows 365 Shared Use 4 vCPU 16 GB 256 GB | Windows_365_S_4vCPU_16GB_256GB |
Windows 365 Shared Use 4 vCPU 16 GB 512 GB | Windows_365_S_4vCPU_16GB_512GB |
Windows 365 Shared Use 8 vCPU 32 GB 128 GB | Windows_365_S_8vCPU_32GB_128GB |
Windows 365 Shared Use 8 vCPU 32 GB 256 GB | Windows_365_S_8vCPU_32GB_256GB |
Windows 365 Shared Use 8 vCPU 32 GB 512 GB | Windows_365_S_8vCPU_32GB_512GB |
Windows Store for Business | WINDOWS_STORE |
Windows 10 Enterprise E5 Commercial (GCC Compatible) | WINE5_GCC_COMPAT |
Microsoft Workplace Analytics | WORKPLACE_ANALYTICS |
Windows Store for Business EDU Faculty | WSFB_EDU_FACULTY |
Office 365 Service Plan Names
The same goes for Office 365 service plan names. For example, to see if Exchange Online (Plan 2) is included in a licensing plan, you need to look for “EXCHANGE_S_ENTERPRISE”, etc.
You can see the complete list of Office 365 service plan names here:
Office 365 Service Plan Names
Display Name | ID |
---|---|
Microsoft Azure Active Directory Basic | AAD_BASIC |
Azure Active Directory Basic for Education | AAD_BASIC_EDU |
Azure Active Directory for Education | AAD_EDU |
Azure Active Directory Premium P1 | AAD_PREMIUM |
Azure Active Directory Premium P2 | AAD_PREMIUM_P2 |
Azure Active Directory | AAD_SMB |
SecOps Investigation for MDI | ADALLOM_FOR_AATP |
Cloud App Security Discovery | ADALLOM_S_DISCOVERY |
Office 365 Cloud App Security | ADALLOM_S_O365 |
Microsoft Cloud App Security | ADALLOM_S_STANDALONE |
Microsoft Defender for Cloud Apps for DOD | ADALLOM_S_STANDALONE_DOD |
Microsoft Defender for Identity | ATA |
Microsoft Defender for Office 365 (Plan 1) | ATP_ENTERPRISE |
Microsoft Defender for Office 365 (Plan 1) for Government | ATP_ENTERPRISE_GOV |
Power BI Pro for Government | BI_AZURE_P_2_GOV |
Power BI (free) | BI_AZURE_P0 |
Microsoft Power BI Reporting and Analytics Plan 1 | BI_AZURE_P1 |
Power BI Pro | BI_AZURE_P2 |
Power BI Premium Per User | BI_AZURE_P3 |
Data Loss Prevention | BPOS_S_DlpAddOn |
To-Do (Plan 1) | BPOS_S_TODO_1 |
To-Do (Plan 2) | BPOS_S_TODO_2 |
To-Do (Plan 3) | BPOS_S_TODO_3 |
To-Do (Firstline) | BPOS_S_TODO_FIRSTLINE |
Dynamics 365 AI for Customer Service Virtual Agents Viral | CCIBOTS_PRIVPREV_VIRAL |
Common Data Service Attended RPA | CDS_ATTENDED_RPA |
Common Data Service for Customer Insights Trial | CDS_CUSTOMER_INSIGHTS_TRIAL |
Common Data Service for Apps Database Capacity | CDS_DB_CAPACITY |
Common Data Service for Apps Database Capacity for Government | CDS_DB_CAPACITY_GOV |
Common Data Service for Apps File Capacity | CDS_FILE_CAPACITY |
Common data service for Flow per business process plan | CDS_Flow_Business_Process |
Common Data Service | CDS_FORM_PRO_USL |
Common Data Service for Apps Log Capacity | CDS_LOG_CAPACITY |
Common Data Service for SharePoint Syntex | CDS_O365_E5_KM |
Common Data Service for Teams | CDS_O365_F1 |
Common Data Service for Teams F1 GCC | CDS_O365_F1_GCC |
Common Data Service for Teams P1 | CDS_O365_P1 |
Common Data Service for Teams P1 GCC | CDS_O365_P1_GCC |
Common Data Service for Teams | CDS_O365_P2 |
Common Data Service for Teams P2 GCC | CDS_O365_P2_GCC |
Common Data Service for Teams | CDS_O365_P3 |
Common Data Service for Teams | CDS_O365_P3_GCC |
CDS PowerApps per app plan | CDS_PER_APP |
CDS Per app baseline access | CDS_PER_APP_IWTRIAL |
Common Data Service Power Apps Portals Login Capacity | CDS_POWERAPPS_PORTALS_LOGIN |
Common Data Service Power Apps Portals Login Capacity for GCC | CDS_POWERAPPS_PORTALS_LOGIN_GCC |
CDS PowerApps Portals page view capacity add-on | CDS_POWERAPPS_PORTALS_PAGEVIEW |
CDS PowerApps Portals page view capacity add-on for GCC | CDS_POWERAPPS_PORTALS_PAGEVIEW_GCC |
Common Data Service for Remote Assist | CDS_REMOTE_ASSIST |
Common Data Service Unattended RPA | CDS_UNATTENDED_RPA |
Common Data Service for Virtual Agent Base | CDS_VIRTUAL_AGENT_BASE |
Common Data Service | CDS_VIRTUAL_AGENT_USL |
AI Builder capacity add-on | CDSAICAPACITY |
AI Builder capacity Per App add-on | CDSAICAPACITY_PERAPP |
AI Builder capacity Per User add-on | CDSAICAPACITY_PERUSER |
AI Builder capacity Per User add-on | CDSAICAPACITY_PERUSER_NEW |
Microsoft Communications Compliance | COMMUNICATIONS_COMPLIANCE |
Microsoft Communications DLP | COMMUNICATIONS_DLP |
Compliance Manager Premium Assessment Add-On | COMPLIANCE_MANAGER_PREMIUM_ASSESSMENT_ADDON |
Information Protection and Governance Analytics – Premium | Content_Explorer |
Information Protection and Governance Analytics – Standard | ContentExplorer_Standard |
Microsoft Viva Topics | CORTEX |
Windows 365 Enterprise 2 vCPU 4 GB 128 GB | CPC_1 |
Windows 365 Enterprise 2 vCPU 8 GB 128 GB | CPC_2 |
Windows 365 Business 1 vCPU 2 GB 64 GB | CPC_B_1C_2RAM_64GB |
Windows 365 Business 2 vCPU 4 GB 128 GB | CPC_B_2C_4RAM_128GB |
Windows 365 Business 2 vCPU 4 GB 256 GB | CPC_B_2C_4RAM_256GB |
Windows 365 Business 2 vCPU 4 GB 64 GB | CPC_B_2C_4RAM_64GB |
Windows 365 Business 2 vCPU 8 GB 256 GB | CPC_B_2C_8RAM_256GB |
Windows 365 Business 4 vCPU 16 GB 128 GB | CPC_B_4C_16RAM_128GB |
Windows 365 Business 4 vCPU 16 GB 256 GB | CPC_B_4C_16RAM_256GB |
Windows 365 Business 4 vCPU 16 GB 512 GB | CPC_B_4C_16RAM_512GB |
Windows 365 Business 8 vCPU 32 GB 128 GB | CPC_B_8C_32RAM_128GB |
Windows 365 Business 8 vCPU 32 GB 256 GB | CPC_B_8C_32RAM_256GB |
Windows 365 Business 8 vCPU 32 GB 512 GB | CPC_B_8C_32RAM_512GB |
Windows 365 Enterprise 1 vCPU 2 GB 64 GB | CPC_E_1C_2GB_64GB |
Windows 365 Enterprise 2 vCPU 4 GB 256 GB | CPC_E_2C_4GB_256GB |
Windows 365 Enterprise 2 vCPU 4 GB 64 GB | CPC_E_2C_4GB_64GB |
Windows 365 Enterprise 2 vCPU 8 GB 256 GB | CPC_E_2C_8GB_256GB |
Windows 365 Enterprise 4 vCPU 16 GB 128 GB | CPC_E_4C_16GB_128GB |
Windows 365 Enterprise 4 vCPU 16 GB 256 GB | CPC_E_4C_16GB_256GB |
Windows 365 Enterprise 4 vCPU 16 GB 512 GB | CPC_E_4C_16GB_512GB |
Windows 365 Enterprise 8 vCPU 32 GB 128 GB | CPC_E_8C_32GB_128GB |
Windows 365 Enterprise 8 vCPU 32 GB 256 GB | CPC_E_8C_32GB_256GB |
Windows 365 Enterprise 8 vCPU 32 GB 512 GB | CPC_E_8C_32GB_512GB |
Windows 365 Shared Use 2 vCPU 4 GB 128 GB | CPC_S_2C_4GB_128GB |
Windows 365 Shared Use 2 vCPU 4 GB 256 GB | CPC_S_2C_4GB_256GB |
Windows 365 Shared Use 2 vCPU 4 GB 64 GB | CPC_S_2C_4GB_64GB |
Windows 365 Shared Use 2 vCPU 8 GB 128 GB | CPC_S_2C_8GB_128GB |
Windows 365 Shared Use 2 vCPU 8 GB 256 GB | CPC_S_2C_8GB_256GB |
Windows 365 Shared Use 4 vCPU 16 GB 128 GB | CPC_S_4C_16GB_128GB |
Windows 365 Shared Use 4 vCPU 16 GB 256 GB | CPC_S_4C_16GB_256GB |
Windows 365 Shared Use 4 vCPU 16 GB 512 GB | CPC_S_4C_16GB_512GB |
Windows 365 Shared Use 8 vCPU 32 GB 128 GB | CPC_S_8C_32GB_128GB |
Windows 365 Shared Use 8 vCPU 32 GB 256 GB | CPC_S_8C_32GB_256GB |
Windows 365 Shared Use 8 vCPU 32 GB 512 GB | CPC_S_8C_32GB_512GB |
Windows 365 Business 2 vCPU, 8 GB, 128 GB | CPC_SS_2 |
CRM Hybrid Connector | CRM_HYBRIDCONNECTOR |
Microsoft Dynamics CRM Online – Portal Add-On | CRM_ONLINE_PORTAL |
Microsoft Dynamics CRM Online Instance | CRMINSTANCE |
Microsoft Dynamics CRM Online Basic | CRMPLAN2 |
Microsoft Dynamics CRM Online Professional | CRMSTANDARD |
Microsoft Dynamics CRM Online Storage Add-On | CRMSTORAGE |
Microsoft Dynamics CRM Online Additional Test Instance | CRMTESTINSTANCE |
Microsoft Customer Key | CUSTOMER_KEY |
Dynamics Customer Voice Add-On | CUSTOMER_VOICE_ADDON |
Dynamics 365 Customer Voice Base Plan | Customer_Voice_Base |
Customer Voice for Dynamics 365 vTrial | CUSTOMER_VOICE_DYN365_VIRAL_TRIAL |
Asset Maintenance Add-in | D365_AssetforSCM |
Dynamics 365 Customer Service Insights for CE Plan | D365_CSI_EMBED_CE |
Dynamics 365 Customer Service Insights for CS Enterprise | D365_CSI_EMBED_CSEnterprise |
Dynamics 365 for Customer Service Enterprise Attach | D365_CUSTOMER_SERVICE_ENT_ATTACH |
Dynamics 365 for Field Service Attach | D365_FIELD_SERVICE_ATTACH |
Microsoft Dynamics 365 for Finance | D365_Finance |
Iot Intelligence Add-in for D365 Supply Chain Management | D365_IOTFORSCM |
IoT Intelligence Add-in Additional Machines | D365_IOTFORSCM_ADDITIONAL |
Dynamics 365 Project Operations | D365_ProjectOperations |
Dynamics 365 Project Operations CDS | D365_ProjectOperationsCDS |
Dynamics 365 for Sales Enterprise Attach | D365_SALES_ENT_ATTACH |
Dynamics 365 for Sales Pro Attach | D365_SALES_PRO_ATTACH |
Dynamics 365 for Sales Professional Trial | D365_SALES_PRO_IW |
Dynamics 365 for Sales Professional Trial | D365_SALES_PRO_IW_Trial |
Dynamics 365 for Supply Chain Management | D365_SCM |
Microsoft Data Investigations | DATA_INVESTIGATIONS |
Dataverse for PAD | DATAVERSE_FOR_POWERAUTOMATE_DESKTOP |
Dataverse for Power Apps per app | DATAVERSE_POWERAPPS_PER_APP_NEW |
Common Data Service | DDYN365_CDS_DYN_P2 |
Microsoft StaffHub | Deskless |
Microsoft Relationship Sales solution | DYN365_ ENTERPRISE _RELATIONSHIP_SALES |
Dynamics 365 AI for Customer Service Trial | DYN365_AI_SERVICE_INSIGHTS |
Dynamics 365 Business Central Database Capacity | DYN365_BUSCENTRAL_DB_CAPACITY |
Dynamics 365 Business Central Additional Environment Addon | DYN365_BUSCENTRAL_ENVIRONMENT |
Dynamics 365 Business Central Premium | DYN365_BUSCENTRAL_PREMIUM |
Dynamics 365 Marketing | DYN365_BUSINESS_Marketing |
Common Data Service for CCI Bots | DYN365_CDS_CCI_BOTS |
Common Data Service – DEV Viral | DYN365_CDS_DEV_VIRAL |
Common Data Service | DYN365_CDS_DYN_APPS |
Common Data Service for Dynamics 365 Finance | DYN365_CDS_FINANCE |
Common Data Service for Project P1 | DYN365_CDS_FOR_PROJECT_P1 |
Common Data Service | DYN365_CDS_FORMS_PRO |
Common Data Service | DYN365_CDS_GUIDES |
Common Data Service | DYN365_CDS_O365_F1 |
Common Data Service – O365 F1 | DYN365_CDS_O365_F1_GCC |
Common Data Service – O365 P1 | DYN365_CDS_O365_P1 |
Common Data Service – O365 P1 GCC | DYN365_CDS_O365_P1_GCC |
Common Data Service | DYN365_CDS_O365_P2 |
Common Data Service – O365 P2 GCC | DYN365_CDS_O365_P2_GCC |
Common Data Service | DYN365_CDS_O365_P3 |
Common Data Service | DYN365_CDS_O365_P3_GCC |
Common Data Service for Government | DYN365_CDS_P1_GOV |
Common Data Service – P2 | DYN365_CDS_P2 |
Common Data Service for Government | DYN365_CDS_P2_GOV |
Common Data Service for Project | DYN365_CDS_PROJECT |
Common Data Service for Dynamics 365 Supply Chain Management | DYN365_CDS_SUPPLYCHAINMANAGEMENT |
Common Data Service – Viral | DYN365_CDS_VIRAL |
Dynamics 365 for Customer Service Chat | DYN365_CS_CHAT |
Dynamics 365 Customer Service Chat Application Integration | DYN365_CS_CHAT_FPA |
Dynamics 365 Customer Service Enterprise vTrial | DYN365_CS_ENTERPRISE_VIRAL_TRIAL |
Dynamics 365 Customer Service Digital Messaging vTrial | DYN365_CS_MESSAGING_VIRAL_TRIAL |
Dynamics 365 Customer Service Voice vTrial | DYN365_CS_VOICE_VIRAL_TRIAL |
Dynamics 365 Customer Insights Engagement Insights Viral | DYN365_CUSTOMER_INSIGHTS_ENGAGEMENT_INSIGHTS_BASE_TRIAL |
Dynamics 365 Customer Insights Viral Plan | DYN365_CUSTOMER_INSIGHTS_VIRAL |
Dynamics 365 for Customer Service Pro | DYN365_CUSTOMER_SERVICE_PRO |
Dynamics 365 for Case Management | DYN365_ENTERPRISE_CASE_MANAGEMENT |
Microsoft Social Engagement – Service Discontinuation | DYN365_ENTERPRISE_CUSTOMER_SERVICE |
Dynamics 365 for Field Service | DYN365_ENTERPRISE_FIELD_SERVICE |
Dynamics 365 P1 | DYN365_ENTERPRISE_P1 |
Dynamics 365 P1 Trial for Information Workers | DYN365_ENTERPRISE_P1_IW |
Dynamics 365 for Sales | DYN365_ENTERPRISE_SALES |
Dynamics 365 for Talent – Attract Experience Team Member | DYN365_Enterprise_Talent_Attract_TeamMember |
Dynamics 365 for Talent – Onboard Experience | DYN365_Enterprise_Talent_Onboard_TeamMember |
Dynamics 365 for Team Members | DYN365_ENTERPRISE_TEAM_MEMBERS |
Dynamics 365 Business Central External Accountant | DYN365_FINANCIALS_ACCOUNTANT |
Dynamics 365 for Business Central Essentials | DYN365_FINANCIALS_BUSINESS |
Dynamics 365 for Team Members | DYN365_FINANCIALS_TEAM_MEMBERS |
Dynamics 365 Field Service Enterprise vTrial | DYN365_FS_ENTERPRISE_VIRAL_TRIAL |
Dynamics 365 for Marketing 50K Addnl Contacts | DYN365_MARKETING_50K_CONTACT_ADDON |
Dynamics 365 for Marketing | DYN365_MARKETING_APP |
Dynamics 365 for Marketing Additional Application | DYN365_MARKETING_APPLICATION_ADDON |
Dynamics 365 for Marketing MSE User | DYN365_MARKETING_MSE_USER |
Dynamics 365 Marketing Sandbox Application AddOn | DYN365_MARKETING_SANDBOX_APPLICATION_ADDON |
Dynamics 365 for Marketing USL | DYN365_MARKETING_USER |
Dynamics 365 for Finance and Operations Enterprise edition – Regulatory Service | DYN365_REGULATORY_SERVICE |
Dynamics 365 for Retail Device | DYN365_RETAIL_DEVICE |
Dynamics 365 Sales Enterprise vTrial | DYN365_SALES_ENTERPRISE_VIRAL_TRIAL |
Dynamics 365 AI for Sales (Embedded) | DYN365_SALES_INSIGHTS |
Dynamics 365 Sales Insights vTrial | DYN365_SALES_INSIGHTS_VIRAL_TRIAL |
Dynamics 365 for Sales Professional | DYN365_SALES_PRO |
Dynamics 365 for Talent | DYN365_TALENT_ENTERPRISE |
Dynamics 365 Team Members | DYN365_TEAM_MEMBERS |
Microsoft Invoicing | DYN365BC_MS_INVOICING |
Dynamics 365 for HCM Trial | Dynamics_365_for_HCM_Trial |
Dynamics 365 for Operations | Dynamics_365_for_Operations |
Dynamics 365 for Operations non-production multi-box instance for standard acceptance testing (Tier 2) | Dynamics_365_for_Operations_Sandbox_Tier2 |
Dynamics 365 for Operations Enterprise Edition – Sandbox Tier 4:Standard Performance Testing | Dynamics_365_for_Operations_Sandbox_Tier4 |
Dynamics 365 for Operations Team Members | DYNAMICS_365_FOR_OPERATIONS_TEAM_MEMBERS |
Dynamics 365 for Operations Devices | Dynamics_365_for_OperationsDevices |
Dynamics 365 for Retail | Dynamics_365_for_Retail |
Dynamics 365 for Retail Team Members | Dynamics_365_for_Retail_Team_members |
Dynamics 365 for Talent Team Members | Dynamics_365_for_Talent_Team_members |
Dynamics 365 for Talent: Attract | Dynamics_365_Hiring_Free_PLAN |
Dynamics 365 for Talent: Onboard | Dynamics_365_Onboarding_Free_PLAN |
Dynamics 365 for Talent: Onboard | Dynamics_365_Talent_Onboard |
Dynamics 365 Customer Service Insights vTrial | DYNB365_CSI_VIRAL_TRIAL |
Education Analytics | EducationAnalyticsP1 |
Exchange Online Protection | EOP_ENTERPRISE |
Exchange Enterprise CAL Services (EOP DLP) | EOP_ENTERPRISE_PREMIUM |
Office 365 Advanced eDiscovery | EQUIVIO_ANALYTICS |
Office 365 Advanced eDiscovery for Government | EQUIVIO_ANALYTICS_GOV |
Dynamics 365 Operations Trial Environment | ERP_TRIAL_INSTANCE |
Microsoft Excel Advanced Analytics | EXCEL_PREMIUM |
Microsoft MyAnalytics (Full) | EXCHANGE_ANALYTICS |
Microsoft MyAnalytics for Government (Full) | EXCHANGE_ANALYTICS_GOV |
Exchange Online POP | EXCHANGE_B_STANDARD |
Exchange Foundation for Government | EXCHANGE_FOUNDATION_GOV |
Exchange Online (P1) | EXCHANGE_L_STANDARD |
Exchange Online Archiving for Exchange Server | EXCHANGE_S_ARCHIVE |
Exchange Online Archiving for Exchange Online | EXCHANGE_S_ARCHIVE_ADDON |
Exchange Online KIOSK | EXCHANGE_S_DESKLESS |
Exchange Online (Kiosk) for Government | EXCHANGE_S_DESKLESS_GOV |
Exchange Online (Plan 2) | EXCHANGE_S_ENTERPRISE |
Exchange Online (Plan 2) for Government | EXCHANGE_S_ENTERPRISE_GOV |
Exchange Essentials | EXCHANGE_S_ESSENTIALS |
Exchange Foundation | EXCHANGE_S_FOUNDATION |
Exchange Foundation for Government | EXCHANGE_S_FOUNDATION_GOV |
Exchange Online (Plan 1) | EXCHANGE_S_STANDARD |
Exchange Online (Plan 1) for Government | EXCHANGE_S_STANDARD_GOV |
Exchange Online Plan | EXCHANGE_S_STANDARD_MIDMARKET |
Exchange Online Multi-Geo | EXCHANGEONLINE_MULTIGEO |
Microsoft Threat Experts – Experts on Demand | EXPERTS_ON_DEMAND |
Flow per business process plan | FLOW_BUSINESS_PROCESS |
Flow for CCI Bots | FLOW_CCI_BOTS |
Power Automate for Customer Service Pro | FLOW_CUSTOMER_SERVICE_PRO |
Flow for Developer | FLOW_DEV_VIRAL |
Flow for Dynamics 365 | FLOW_DYN_APPS |
Flow for Dynamics 365 | FLOW_DYN_P2 |
Power Automate for Dynamics 365 | FLOW_DYN_TEAM |
Flow for Project | FLOW_FOR_PROJECT |
Power Automate for Dynamics 365 Customer Voice | FLOW_FORMS_PRO |
Flow for Office 365 | FLOW_O365_P1 |
Power Automate for Office 365 for Government | FLOW_O365_P1_GOV |
Power Automate for Office 365 | FLOW_O365_P2 |
Power Automate for Office 365 for Government | FLOW_O365_P2_GOV |
Power Automate for Office 365 | FLOW_O365_P3 |
Power Automate for Office 365 for Government | FLOW_O365_P3_GOV |
Power Automate for Office 365 F3 | FLOW_O365_S1 |
Power Automate for Office 365 F3 for Government | FLOW_O365_S1_GOV |
Power Automate (Plan 1) for Government | FLOW_P1_GOV |
Power Automate (Plan 2) | FLOW_P2 |
Flow Free | FLOW_P2_VIRAL |
Flow P2 Viral | FLOW_P2_VIRAL_REAL |
Power Automate for Power Apps per App Plan | Flow_Per_APP |
Flow per app baseline access | Flow_Per_APP_IWTRIAL |
Flow per user plan | FLOW_PER_USER |
Power Automate per User Plan for Government | FLOW_PER_USER_GCC |
Power Automate for Power Apps per User Plan | Flow_PowerApps_PerUser |
Power Automate for Power Apps per User Plan for GCC | Flow_PowerApps_PerUser_GCC |
Power Automate for Virtual Agent | FLOW_VIRTUAL_AGENT_BASE |
Power Automate for Virtual Agent | FLOW_VIRTUAL_AGENT_USL |
Forms for Government (Plan E1) | FORMS_GOV_E1 |
ForMS for Government (Plan E3) | FORMS_GOV_E3 |
Microsoft Forms for Government (Plan E5) | FORMS_GOV_E5 |
Forms for Government (Plan F1) | FORMS_GOV_F1 |
Microsoft ForMS (Plan E1) | FORMS_PLAN_E1 |
Microsoft Forms (Plan E3) | FORMS_PLAN_E3 |
Microsoft Forms (Plan E5) | FORMS_PLAN_E5 |
Microsoft Forms (Plan F1) | FORMS_PLAN_K |
Dynamics 365 Customer Voice | FORMS_PRO |
Microsoft Dynamics 365 Customer Voice Add-on | Forms_Pro_AddOn |
Microsoft Dynamics 365 Customer Voice for Customer Engagement Plan | Forms_Pro_CE |
Microsoft Dynamics 365 Customer Voice for Customer Insights | Forms_Pro_Customer_Insights |
Microsoft Dynamics 365 Customer Voice for Field Service | Forms_Pro_FS |
Microsoft Dynamics 365 Customer Voice for Marketing | Forms_Pro_Marketing |
Microsoft Dynamics 365 Customer Voice for Marketing Application | Forms_Pro_Marketing_App |
Microsoft Dynamics 365 Customer Voice for Relationship Sales | Forms_Pro_Relationship_Sales |
Microsoft Dynamics 365 Customer Voice for Sales Enterprise | Forms_Pro_SalesEnt |
Microsoft Dynamics 365 Customer Voice for Customer Service Enterprise | Forms_Pro_Service |
Microsoft Dynamics 365 Customer Voice USL | Forms_Pro_USL |
Graph Connectors Search with Index | GRAPH_CONNECTORS_SEARCH_INDEX |
Graph Connectors Search with Index (Microsoft Viva Topics) | GRAPH_CONNECTORS_SEARCH_INDEX_TOPICEXP |
Dynamics 365 Guides | GUIDES |
Microsoft Information Governance | INFO_GOVERNANCE |
Information Barriers | INFORMATION_BARRIERS |
Microsoft Insider Risk Management | INSIDER_RISK |
Microsoft Insider Risk Management | INSIDER_RISK_MANAGEMENT |
SharePoint Syntex | Intelligent_Content_Services |
SharePoint Syntex – SPO type | Intelligent_Content_Services_SPO_type |
Microsoft Intune | INTUNE_A |
Intune Advanced endpoint analytics | Intune_AdvancedEA |
MDE SecurityManagement | Intune_Defender |
Microsoft Intune for Education | INTUNE_EDU |
Mobile Device Management for Office 365 | INTUNE_O365 |
Intune Plan 2 | INTUNE_P2 |
Microsoft Intune | INTUNE_SMBIZ |
Intune Endpoint Privilege Management | Intune-EPM |
Microsoft Tunnel for Mobile Application Management | Intune-MAMTunnel |
MS Imagine Academy | IT_ACADEMY_AD |
Microsoft Kaizala Pro | KAIZALA_O365_P1 |
Microsoft Kaizala Pro | KAIZALA_O365_P2 |
Microsoft Kaizala Pro | KAIZALA_O365_P3 |
Microsoft Kaizala Pro | KAIZALA_STANDALONE |
Customer Lockbox | LOCKBOX_ENTERPRISE |
Customer Lockbox for Government | LOCKBOX_ENTERPRISE_GOV |
Microsoft 365 Advanced Auditing | M365_ADVANCED_AUDITING |
Microsoft 365 Audit Platform | M365_AUDIT_PLATFORM |
Microsoft 365 Lighthouse (Plan 1) | M365_LIGHTHOUSE_CUSTOMER_PLAN1 |
Microsoft 365 Lighthouse (Plan 2) | M365_LIGHTHOUSE_PARTNER_PLAN1 |
Microsoft Teams | MCO_TEAMS_IW |
Microsoft Teams Premium Virtual Appointments | MCO_VIRTUAL_APPT |
Microsoft 365 Phone System | MCOEV |
Microsoft 365 Phone System for Government | MCOEV_GOV |
Microsoft 365 Phone Standard Resource Account | MCOEV_VIRTUALUSER |
Microsoft 365 Phone Standard Resource Account for Government | MCOEV_VIRTUALUSER_GOV |
Skype for Business Cloud PBX for Small and Medium Business | MCOEVSMB |
MCO Free for Microsoft Teams (Free) | MCOFREE |
Skype for Business Online (Plan 1) | MCOIMP |
Skype for Business Online (Plan 1) for Government | MCOIMP_GOV |
Skype for Business Online (Plan P1) | MCOLITE |
Microsoft 365 Audio Conferencing Pay-Per-Minute | MCOMEETACPEA |
Microsoft 365 Audio Conferencing | MCOMEETADV |
Microsoft 365 Audio Conferencing for Government | MCOMEETADV_GOV |
Microsoft Teams Audio Conferencing with dial-out to select geographies | MCOMEETBASIC |
Microsoft 365 Domestic Calling Plan | MCOPSTN1 |
Domestic Calling for Government | MCOPSTN1_GOV |
Domestic and International Calling Plan | MCOPSTN2 |
MCOPSTN3 | MCOPSTN3 |
Microsoft 365 Domestic Calling Plan (120 min) | MCOPSTN5 |
Microsoft 365 Domestic Calling Plan (120 min) at User Level | MCOPSTN8 |
Communications Credits | MCOPSTNC |
Australia Calling Plan | MCOPSTNEAU |
Skype for Business Online (Plan 2) | MCOSTANDARD |
Skype for Business Online (Plan 2) for Government | MCOSTANDARD_GOV |
Skype for Business Online (Plan 2) for MIDSIZ | MCOSTANDARD_MIDMARKET |
Skype for Business Online (Plan 3) | MCOVOICECONF |
Microsoft Defender for Endpoint Plan 1 | MDE_LITE |
Microsoft Defender for Business | MDE_SMB |
Microsoft Dynamics Marketing Sales Collaboration – Eligibility Criteria Apply | MDM_SALES_COLLABORATION |
Microsoft Azure Multi-Factor Authentication | MFA_PREMIUM |
Microsoft Application Protection and Governance (A) | MICROSOFT_APPLICATION_PROTECTION_AND_GOVERNANCE_A |
Microsoft Application Protection and Governance (D) | MICROSOFT_APPLICATION_PROTECTION_AND_GOVERNANCE_D |
Microsoft Business Center | MICROSOFT_BUSINESS_CENTER |
Microsoft 365 Communication Compliance | MICROSOFT_COMMUNICATION_COMPLIANCE |
Microsoft eCDN | MICROSOFT_ECDN |
Microsoft Remote Assist | MICROSOFT_REMOTE_ASSIST |
Microsoft Search | MICROSOFT_SEARCH |
Microsoft Viva Sales Premium with Power Automate | Microsoft_Viva_Sales_PowerAutomate |
Microsoft Viva Sales Premium & Trial | Microsoft_Viva_Sales_PremiumTrial |
Microsoft Bookings | MICROSOFTBOOKINGS |
Microsoft Endpoint DLP | MICROSOFTENDPOINTDLP |
Microsoft Stream | MICROSOFTSTREAM |
Minecraft Education Edition | MINECRAFT_EDUCATION_EDITION |
Information Protection for Office 365 – Standard | MIP_S_CLP1 |
Information Protection for Office 365 – Premium | MIP_S_CLP2 |
Data Classification in Microsoft 365 | MIP_S_Exchange |
Data Classification in Microsoft 365 – Company Level | MIP_S_EXCHANGE_CO |
Microsoft ML-Based Classification | ML_CLASSIFICATION |
Meeting Room Managed Services | MMR_P1 |
Microsoft 365 Defender | MTP |
Insights by MyAnalytics | MYANALYTICS_P2 |
Insights by MyAnalytics for Government | MYANALYTICS_P2_GOV |
Microsoft Social Engagement Enterprise | NBENTERPRISE |
Microsoft Social Engagement Professional – Eligibility Criteria Apply | NBPROFESSIONALFORCRM |
Nonprofit Portal | NONPROFIT_PORTAL |
Nucleus | Nucleus |
Outlook Customer Manager | O365_SB_Relationship_Management |
Office 365 Business | OFFICE_BUSINESS |
Microsoft Forms (Plan 2) | OFFICE_FORMS_PLAN_2 |
Microsoft Forms (Plan 3) | OFFICE_FORMS_PLAN_3 |
Office 365 Small Business Subscription | OFFICE_PRO_PLUS_SUBSCRIPTION_SMBIZ |
Microsoft 365 Apps for Enterprise (Device) | OFFICE_PROPLUS_DEVICE |
Office Shared Computer Activation | OFFICE_SHARED_COMPUTER_ACTIVATION |
Office Mobile Subscription | OFFICEMOBILE_SUBSCRIPTION |
Office Mobile Apps for Office 365 for GCC | OFFICEMOBILE_SUBSCRIPTION_GOV |
Microsoft 365 Apps for enterprise | OFFICESUBSCRIPTION |
Microsoft 365 Apps for enterprise G | OFFICESUBSCRIPTION_GOV |
Microsoft 365 Apps for Enterprise (Unattended) | OFFICESUBSCRIPTION_unattended |
OneDrive for business Basic | ONEDRIVE_BASIC |
OneDrive for Business Basic for Government | ONEDRIVE_BASIC_GOV |
OneDriveEnterprise | ONEDRIVEENTERPRISE |
OneDriveStandard | ONEDRIVESTANDARD |
Office 365 Privileged Access Management | PAM_ENTERPRISE |
Power BI Premium P | PBI_PREMIUM_P1_ADDON |
Power Apps for Dynamics 365 vTrial | POWER_APPS_DYN365_VIRAL_TRIAL |
Power Automate RPA Attended | POWER_AUTOMATE_ATTENDED_RPA |
Power Automate for Dynamics 365 vTrial | POWER_AUTOMATE_DYN365_VIRAL_TRIAL |
Power Automate for Project P1 | Power_Automate_For_Project_P1 |
Power Automate Unattended RPA add-on | POWER_AUTOMATE_UNATTENDED_RPA |
Power Pages Internal User | Power_Pages_Internal_User |
Power Pages vTrial for Makers | POWER_PAGES_VTRIAL |
Power Virtual Agents for Chat | POWER_VIRTUAL_AGENTS_D365_CS_CHAT |
Power Virtual Agents for Office 365 | POWER_VIRTUAL_AGENTS_O365_F1 |
Power Virtual Agents for Office 365 P1 | POWER_VIRTUAL_AGENTS_O365_P1 |
Power Virtual Agents for Office 365 | POWER_VIRTUAL_AGENTS_O365_P2 |
Power Virtual Agents for Office 365 | POWER_VIRTUAL_AGENTS_O365_P3 |
Power Apps for Customer Service Pro | POWERAPPS_CUSTOMER_SERVICE_PRO |
PowerApps for Developer | POWERAPPS_DEV_VIRAL |
PowerApps for Dynamics 365 | POWERAPPS_DYN_APPS |
Power Apps for Dynamics 365 | POWERAPPS_DYN_P2 |
Power Apps for Dynamics 365 | POWERAPPS_DYN_TEAM |
Power Apps for Guides | POWERAPPS_GUIDES |
PowerApps for Office 365 | POWERAPPS_O365_P1 |
Power Apps for Office 365 for Government | POWERAPPS_O365_P1_GOV |
Power Apps for Office 365 | POWERAPPS_O365_P2 |
Power Apps for Office 365 for Government | POWERAPPS_O365_P2_GOV |
Power Apps for Office 365 (Plan 3) | POWERAPPS_O365_P3 |
Power Apps for Office 365 for Government | POWERAPPS_O365_P3_GOV |
Power Apps for Office 365 F3 | POWERAPPS_O365_S1 |
Power Apps for Office 365 F3 for Government | POWERAPPS_O365_S1_GOV |
PowerApps Plan 1 for Government | POWERAPPS_P1_GOV |
Power Apps (Plan 2) | POWERAPPS_P2 |
PowerApps Trial | POWERAPPS_P2_VIRAL |
Power Apps per App Plan | POWERAPPS_PER_APP |
PowerApps per app baseline access | POWERAPPS_PER_APP_IWTRIAL |
Power Apps per app | POWERAPPS_PER_APP_NEW |
Power Apps per User Plan | POWERAPPS_PER_USER |
Power Apps per User Plan for Government | POWERAPPS_PER_USER_GCC |
Power Apps Portals Login Capacity Add-On | POWERAPPS_PORTALS_LOGIN |
Power Apps Portals Login Capacity Add-On for Government | POWERAPPS_PORTALS_LOGIN_GCC |
Power Apps Portals Page View Capacity Add-On | POWERAPPS_PORTALS_PAGEVIEW |
Power Apps Portals Page View Capacity Add-On for Government | POWERAPPS_PORTALS_PAGEVIEW_GCC |
Power Apps for Sales Pro | POWERAPPS_SALES_PRO |
Microsoft PowerApps | POWERAPPSFREE |
PAD for Windows | POWERAUTOMATE_DESKTOP_FOR_WIN |
Logic Flows | POWERFLOWSFREE |
Microsoft Power Videos Basic | POWERVIDEOSFREE |
Premium Encryption in Office 365 | PREMIUM_ENCRYPTION |
Privacy Management – Subject Rights Request | PRIVACY_MANGEMENT_DSR |
Privacy Management – Subject Rights Request (1 – Exchange) | PRIVACY_MANGEMENT_DSR_1 |
Privacy Management – Subject Rights Request (10) | PRIVACY_MANGEMENT_DSR_10 |
Privacy Management – Subject Rights Request (100) | PRIVACY_MANGEMENT_DSR_100 |
Privacy Management – Subject Rights Request (Exchange) | PRIVACY_MANGEMENT_DSR_EXCHANGE |
Privacy Management – Subject Rights Request (1) | PRIVACY_MANGEMENT_DSR_EXCHANGE_1 |
Privacy Management – Subject Rights Request (10 – Exchange) | PRIVACY_MANGEMENT_DSR_EXCHANGE_10 |
Privacy Management – Subject Rights Request (100 – Exchange) | PRIVACY_MANGEMENT_DSR_EXCHANGE_100 |
Priva – Risk | PRIVACY_MANGEMENT_RISK |
Priva – Risk (Exchange) | PRIVACY_MANGEMENT_RISK_EXCHANGE |
Project Online Desktop Client | PROJECT_CLIENT_SUBSCRIPTION |
Project Online Desktop Client for Government | PROJECT_CLIENT_SUBSCRIPTION_GOV |
Project Online Essentials | PROJECT_ESSENTIALS |
Project Online Essentials for Government | PROJECT_ESSENTIALS_GOV |
Project for Project Operations | PROJECT_FOR_PROJECT_OPERATIONS |
Dynamics 365 Business Central for IWs | PROJECT_MADEIRA_PREVIEW_IW |
Project for Office (Plan F) | PROJECT_O365_F3 |
Project for Office (Plan E1) | PROJECT_O365_P1 |
Project for Office (Plan E3) | PROJECT_O365_P2 |
Project for Office (Plan E5) | PROJECT_O365_P3 |
Project P1 | PROJECT_P1 |
Project P3 | PROJECT_PROFESSIONAL |
Project P3 for Faculty | PROJECT_PROFESSIONAL_FACULTY |
Microsoft Planner | PROJECTWORKMANAGEMENT |
Office 365 Planner for Government | PROJECTWORKMANAGEMENT_GOV |
Microsoft Records Management | RECORDS_MANAGEMENT |
Remote help | REMOTE_HELP |
Rights Management Adhoc | RMS_S_ADHOC |
Microsoft Azure Rights Management Service | RMS_S_BASIC |
Azure Information Protection Premium P1 | RMS_S_ENTERPRISE |
Microsoft Azure Active Directory Rights | RMS_S_ENTERPRISE) |
Azure Rights Management | RMS_S_ENTERPRISE_GOV |
Microsoft Azure Active Directory Rights | RMS_S_PREMIUM |
Azure Information Protection Premium P1 for GCC | RMS_S_PREMIUM_GOV |
Azure Information Protection Premium P2 | RMS_S_PREMIUM2 |
Azure Information Protection Premium P2 for GCC | RMS_S_PREMIUM2_GOV |
Office 365 SafeDocs | SAFEDOCS |
School Data Sync (Plan 1) | SCHOOL_DATA_SYNC_P1 |
School Data Sync (Plan 2) | SCHOOL_DATA_SYNC_P2 |
SharePoint Plan 1G | SharePoint Plan 1G |
Project Online Service | SHAREPOINT_PROJECT |
Project Online Service for Education | SHAREPOINT_PROJECT_EDU |
Project Online Service for Government | SHAREPOINT_PROJECT_GOV |
SharePoint for Developer | SHAREPOINT_S_DEVELOPER |
SharePoint Online Kiosk | SHAREPOINTDESKLESS |
SharePoint KioskG | SHAREPOINTDESKLESS_GOV |
SharePoint (Plan 2) | SHAREPOINTENTERPRISE |
SharePoint (Plan 2) for Education | SHAREPOINTENTERPRISE_EDU |
SharePoint Plan 2G | SHAREPOINTENTERPRISE_GOV |
SharePoint Plan 1 | SHAREPOINTENTERPRISE_MIDMARKET |
SharePoint Lite | SHAREPOINTLITE |
SharePoint Multi-Geo | SHAREPOINTONLINE_MULTIGEO |
SharePoint Standard | SHAREPOINTSTANDARD |
SharePoint (Plan 1) for Education | SHAREPOINTSTANDARD_EDU |
Office 365 Extra File Storage | SHAREPOINTSTORAGE |
SharePoint Storage GOV | SHAREPOINTSTORAGE_GOV |
Office for the web | SHAREPOINTWAC |
Office Online for Developer | SHAREPOINTWAC_DEVELOPER |
Office for the Web for Education | SHAREPOINTWAC_EDU |
Office for the Web for Government | SHAREPOINTWAC_GOV |
Dynamics 365 AI for Market Insights – Free | SOCIAL_ENGAGEMENT_APP_USER |
App Connect | SPZA |
Microsoft Power BI Information Services Plan 1 | SQL_IS_SSIM |
Microsoft Stream for Office 365 E1 | STREAM_O365_E1 |
Microsoft Stream for O365 for Government (E1) | STREAM_O365_E1_GOV |
Microsoft Stream for Office 365 E3 | STREAM_O365_E3 |
Microsoft Stream for O365 for Government (E3) | STREAM_O365_E3_GOV |
Microsoft Stream for Office 365 E5 | STREAM_O365_E5 |
Stream for Office 365 for Government (E5) | STREAM_O365_E5_GOV |
Microsoft Stream for O365 K SKU | STREAM_O365_K |
Microsoft Stream for O365 for Government (F1) | STREAM_O365_K_GOV |
Stream for Office 365 | STREAM_O365_SMB |
Microsoft Stream Plan 2 | STREAM_P2 |
Microsoft Stream Storage Add-On | STREAM_STORAGE |
Sway | SWAY |
Microsoft 365 Advanced Communications | TEAMS_ADVCOMMS |
Microsoft Teams for DOD (AR) | TEAMS_AR_DOD |
Microsoft Teams for GCCHigh (AR) | TEAMS_AR_GCCHIGH |
Microsoft Teams (Free) | TEAMS_FREE |
Teams Free Service | TEAMS_FREE_SERVICE |
Microsoft Teams for Government | TEAMS_GOV |
Teams Room Standard | Teams_Room_Standard |
Microsoft Teams | TEAMS1 |
Microsoft Teams Essentials | TeamsEss |
Teams Multi-Geo | TEAMSMULTIGEO |
Microsoft Teams Premium Personalized | TEAMSPRO_CUST |
Microsoft Teams Premium Intelligent | TEAMSPRO_MGMT |
Microsoft Teams Premium Secure | TEAMSPRO_PROTECTION |
Microsoft Teams Premium Virtual Appointment | TEAMSPRO_VIRTUALAPPT |
Microsoft Teams Premium Webinar | TEAMSPRO_WEBINAR |
Microsoft Defender for Office 365 (Plan 2) | THREAT_INTELLIGENCE |
Microsoft Defender for Office 365 (Plan 2) for Government | THREAT_INTELLIGENCE_GOV |
Microsoft Defender Vulnerability Management | TVM_PREMIUM_1 |
Universal Print | UNIVERSAL_PRINT_01 |
Universal Print Without Seeding | UNIVERSAL_PRINT_NO_SEEDING |
Virtual Agent Base | VIRTUAL_AGENT_BASE |
Virtual Agent | VIRTUAL_AGENT_USL |
Windows 10/11 Enterprise | Virtualization Rights for Windows 10 (E3/E5+VDA) |
Visio Desktop App | VISIO_CLIENT_SUBSCRIPTION |
Visio Desktop App for Government | VISIO_CLIENT_SUBSCRIPTION_GOV |
Visio web app | VISIOONLINE |
Visio Web App for Government | VISIOONLINE_GOV |
Viva Goals | Viva_Goals_Premium |
Viva Learning | VIVA_LEARNING_PREMIUM |
Viva Learning Seeded | VIVA_LEARNING_SEEDED |
Viva Engage Communities and Communications | VIVAENGAGE_COMMUNITIES_AND_COMMUNICATIONS |
Viva Engage Core | VIVAENGAGE_CORE |
Viva Engage Knowledge | VIVAENGAGE_KNOWLEDGE |
Whiteboard (Firstline) | WHITEBOARD_FIRSTLINE1 |
Whiteboard (Plan 1) | WHITEBOARD_PLAN1 |
Whiteboard (Plan 2) | WHITEBOARD_PLAN2 |
Whiteboard (Plan 3) | WHITEBOARD_PLAN3 |
Windows 10 Enterprise E3 (Local Only) | WIN10_ENT_LOC_F1 |
Windows 10/11 Enterprise (Original) | WIN10_PRO_ENT_SUB |
Windows 10/11 Business | WINBIZ |
Microsoft Defender for Endpoint | WINDEFATP |
Windows Autopatch | Windows Autopatch |
Windows Store for Business EDU Store faculty | Windows Store for Business EDU Store_faculty |
Windows Autopatch | Windows_Autopatch |
Windows Store Service | WINDOWS_STORE |
Windows Update for Business Deployment Service | WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE |
Microsoft Workplace Analytics | WORKPLACE_ANALYTICS |
Microsoft Viva Insights Backend | WORKPLACE_ANALYTICS_INSIGHTS_BACKEND |
Microsoft Viva Insights | WORKPLACE_ANALYTICS_INSIGHTS_USER |
Yammer for Academic | YAMMER_EDU |
Yammer Enterprise | YAMMER_ENTERPRISE |
Yammer Midsize | YAMMER_MIDSIZE |
Summary
I hope you got a good overview of Office 365 licensing reading this article.
You should now be able to generate any type of Office 365 licensing report that you need.
For day-to-day management of user licenses, you can save a lot of time by using Easy365Manager.
Easy365Manager is available as a fully functional 30-day trial here. It takes less than five minutes to download, install and configure.
Protect yourself from future zero-day exploits like Hafnium by removing your on-premises Exchange server. Start using Easy365Manager today!