Office 365 Licenses and PowerShell

Office 365 Licensing Object Model

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

ObjectDescriptionSample value
Licensing PlanA collection of one or more Service Plans (Services)Office 365 Enterprise E5
Service Plan (Service)A specific product, feature or capability in Office 365Exchange Online
LicenseA license grants users access to Services contained in the Licensing Plan for which the license is purchased
Active UnitsNumber of Licenses purchased for a specific Licensing Plan100
Consumed UnitsNumber of Licenses assigned to users57

The following diagram shows how these objects relate to one another:

Office 365 Licensing Object Model
Click to enlarge

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 NameID
Azure Active Directory BasicAAD_BASIC
Azure Active Directory Premium P1AAD_PREMIUM
Azure Active Directory Premium P1 for FacultyAAD_PREMIUM_FACULTY
Azure Active Directory Premium P2AAD_PREMIUM_P2
Office 365 Cloud App SecurityADALLOM_O365
Microsoft Cloud App SecurityADALLOM_STANDALONE
Advanced CommunicationsADV_COMMS
Microsoft Defender for IdentityATA
Microsoft Defender for Office 365 (Plan 1)ATP_ENTERPRISE
Microsoft Defender for Office 365 (Plan 1) FacultyATP_ENTERPRISE_FACULTY
Microsoft Defender for Office 365 (Plan 1) GCCATP_ENTERPRISE_GOV
Microsoft Dynamics AX7 User TrialAX7_USER_TRIAL
Microsoft 365 Business Voice (without calling plan)BUSINESS_VOICE_DIRECTROUTING
Microsoft 365 Business Voice (without Calling Plan) for USBUSINESS_VOICE_DIRECTROUTING_MED
Microsoft 365 Business VoiceBUSINESS_VOICE_MED2
Microsoft 365 Business Voice (US)BUSINESS_VOICE_MED2_TELCO
Power Virtual Agents Viral TrialCCIBOTS_PRIVPREV_VIRAL
Common Data Service Database CapacityCDS_DB_CAPACITY
Common Data Service Database Capacity for GovernmentCDS_DB_CAPACITY_GOV
Common Data Service for Apps File CapacityCDS_FILE_CAPACITY
Common Data Service Log CapacityCDS_LOG_CAPACITY
AI Builder Capacity add-onCDSAICAPACITY
Compliance Manager Premium Assessment Add-On for GCCCMPA_addon_GCC
Windows 365 Business 1 vCPU 2 GB 64 GBCPC_B_1C_2RAM_64GB
Windows 365 Business 2 vCPU 4 GB 128 GBCPC_B_2C_4RAM_128GB
Windows 365 Business 2 vCPU 4 GB 256 GBCPC_B_2C_4RAM_256GB
Windows 365 Business 2 vCPU 4 GB 64 GBCPC_B_2C_4RAM_64GB
Windows 365 Business 2 vCPU 8 GB 128 GBCPC_B_2C_8RAM_128GB
Windows 365 Business 2 vCPU 8 GB 256 GBCPC_B_2C_8RAM_256GB
Windows 365 Business 4 vCPU 16 GB 128 GBCPC_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 GBCPC_B_4C_16RAM_256GB
Windows 365 Business 4 vCPU 16 GB 512 GBCPC_B_4C_16RAM_512GB
Windows 365 Business 8 vCPU 32 GB 128 GBCPC_B_8C_32RAM_128GB
Windows 365 Business 8 vCPU 32 GB 256 GBCPC_B_8C_32RAM_256GB
Windows 365 Business 8 vCPU 32 GB 512 GBCPC_B_8C_32RAM_512GB
Windows 365 Enterprise 1 vCPU 2 GB 64 GBCPC_E_1C_2GB_64GB
Windows 365 Enterprise 2 vCPU 4 GB 128 GBCPC_E_2C_4GB_128GB
Windows 365 Enterprise 2 vCPU 4 GB 256 GBCPC_E_2C_4GB_256GB
Windows 365 Enterprise 2 vCPU 4 GB 64 GBCPC_E_2C_4GB_64GB
Windows 365 Enterprise 2 vCPU 8 GB 128 GBCPC_E_2C_8GB_128GB
Windows 365 Enterprise 2 vCPU 8 GB 256 GBCPC_E_2C_8GB_256GB
Windows 365 Enterprise 4 vCPU 16 GB 128 GBCPC_E_4C_16GB_128GB
Windows 365 Enterprise 4 vCPU 16 GB 256 GBCPC_E_4C_16GB_256GB
Windows 365 Enterprise 4 vCPU 16 GB 512 GBCPC_E_4C_16GB_512GB
Windows 365 Enterprise 8 vCPU 32 GB 128 GBCPC_E_8C_32GB_128GB
Windows 365 Enterprise 8 vCPU 32 GB 256 GBCPC_E_8C_32GB_256GB
Windows 365 Enterprise 8 vCPU 32 GB 512 GBCPC_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 ConnectorCRM_HYBRIDCONNECTOR
Dynamics 365 Enterprise Edition – Additional Portal (Qualified Offer)CRM_ONLINE_PORTAL
Dynamics 365 – Additional Production Instance (Qualified Offer)CRMINSTANCE
Microsoft Dynamics CRM Online BasicCRMPLAN2
Microsoft Dynamics CRM OnlineCRMSTANDARD
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 AD365_CUSTOMER_SERVICE_ENT_ATTACH
Dynamics 365 for Field Service Attach to Qualifying Dynamics 365 Base OfferD365_FIELD_SERVICE_ATTACH
Dynamics 365 for Marketing USLD365_MARKETING_USER
Dynamics 365 Sales Enterprise Attach to Qualifying Dynamics 365 Base OfferD365_SALES_ENT_ATTACH
Dynamics 365 For Sales ProfessionalD365_SALES_PRO
Dynamics 365 Sales Professional Attach to Qualifying Dynamics 365 Base OfferD365_SALES_PRO_ATTACH
Dynamics 365 For Sales Professional TrialD365_SALES_PRO_IW
Microsoft Defender for Endpoint P1DEFENDER_ENDPOINT_P1
Office 365 F3DESKLESSPACK
Office 365 E3 DeveloperDEVELOPERPACK
Microsoft 365 E5 Developer (without Windows and Audio Conferencing)DEVELOPERPACK_E5
Microsoft Relationship Sales solutionDYN365_ ENTERPRISE _RELATIONSHIP_SALES
Dynamics 365 Customer Service Insights TrialDYN365_AI_SERVICE_INSIGHTS
Dynamics 365 Asset Management Addl AssetsDYN365_ASSETMANAGEMENT
Dynamics 365 Business Central Additional Environment AddonDYN365_BUSCENTRAL_ADD_ENV_ADDON
Dynamics 365 Business Central Database CapacityDYN365_BUSCENTRAL_DB_CAPACITY
Dynamics 365 Business Central EssentialsDYN365_BUSCENTRAL_ESSENTIAL
Dynamics 365 Business Central PremiumDYN365_BUSCENTRAL_PREMIUM
Dynamics 365 Business Central Team MembersDYN365_BUSCENTRAL_TEAM_MEMBER
Dynamics 365 for Marketing Business EditionDYN365_BUSINESS_MARKETING
Dynamics 365 for Customer Service ChatDYN365_CS_CHAT
Dynamics 365 Customer Insights vTrialDYN365_CUSTOMER_INSIGHTS_VIRAL
Dynamics 365 Customer Service ProfessionalDYN365_CUSTOMER_SERVICE_PRO
Dynamics 365 Customer Voice Additional ResponsesDYN365_CUSTOMER_VOICE_ADDON
Dynamics 365 Customer VoiceDYN365_CUSTOMER_VOICE_BASE
Dynamics 365 for Case Management Enterprise EditionDYN365_ENTERPRISE_CASE_MANAGEMENT
Dynamics 365 for Customer Service Enterprise EditionDYN365_ENTERPRISE_CUSTOMER_SERVICE
Dynamics 365 for Field Service Enterprise EditionDYN365_ENTERPRISE_FIELD_SERVICE
Dynamics 365 P1 Tria for Information WorkersDYN365_ENTERPRISE_P1_IW
Dynamics 365 Customer Engagement PlanDYN365_ENTERPRISE_PLAN1
Dynamics 365 for Sales Enterprise EditionDYN365_ENTERPRISE_SALES
Dynamics 365 for Sales and Customer Service Enterprise EditionDYN365_ENTERPRISE_SALES_CUSTOMERSERVICE
Dynamics 365 for Team Members Enterprise EditionDYN365_ENTERPRISE_TEAM_MEMBERS
Dynamics 365 FinanceDYN365_FINANCE
Dynamics 365 Business Central External AccountantDYN365_FINANCIALS_ACCOUNTANT_SKU
Dynamics 365 for Financials Business EditionDYN365_FINANCIALS_BUSINESS_SKU
Sensor Data Intelligence Additional Machines Add-in for Dynamics 365 Supply Chain ManagementDYN365_IOT_INTELLIGENCE_ADDL_MACHINES
Sensor Data Intelligence Scenario Add-in for Dynamics 365 Supply Chain ManagementDYN365_IOT_INTELLIGENCE_SCENARIO
Dynamics 365 for Marketing AttachDYN365_MARKETING_APP_ATTACH
Dynamics 365 for Marketing Additional ApplicationDYN365_MARKETING_APPLICATION_ADDON
Dynamics 365 for Marketing Addnl Contacts Tier 5DYN365_MARKETING_CONTACT_ADDON_T5
Dynamics 365 for Marketing Additional Non-Prod ApplicationDYN365_MARKETING_SANDBOX_APPLICATION_ADDON
Dynamics 365 Regulatory Service – Enterprise Edition TrialDYN365_REGULATORY_SERVICE
Dynamics 365 Sales PremiumDYN365_SALES_PREMIUM
Dynamics 365 for Supply Chain ManagementDYN365_SCM
Dynamics 365 Team MembersDYN365_TEAM_MEMBERS
Dynamics 365 Customer Service Enterprise Viral TrialDynamics_365_Customer_Service_Enterprise_viral_trial
Dynamics 365 Field Service Viral TrialDynamics_365_Field_Service_Enterprise_viral_trial
Dynamics 365 UNF OPS Plan ENT EditionDynamics_365_for_Operations
Dynamics 365 Operations – DeviceDynamics_365_for_Operations_Devices
Dynamics 365 Operations – Sandbox Tier 2:Standard Acceptance TestingDynamics_365_for_Operations_Sandbox_Tier2_SKU
Dynamics 365 Operations – Sandbox Tier 4:Standard Performance TestingDynamics_365_for_Operations_Sandbox_Tier4_SKU
Dynamics 365 Talent: AttractDynamics_365_Hiring_SKU
Dynamics 365 Talent: OnboardDYNAMICS_365_ONBOARDING_SKU
Dynamics 365 Sales Premium Viral TrialDynamics_365_Sales_Premium_Viral_Trial
Windows 10/11 Enterprise E3 VDAE3_VDA_only
Enterprise Mobility + Security E3EMS
Enterprise Mobility + Security A3 for FacultyEMS_EDU_FACULTY
Enterprise Mobility + Security G3 GCCEMS_GOV
Enterprise Mobility + Security E5EMSPREMIUM
Enterprise Mobility + Security G5 GCCEMSPREMIUM_GOV
Office 365 E3ENTERPRISEPACK
Office 365 G3 GCCENTERPRISEPACK_GOV
Office 365 E3_USGOV_DODENTERPRISEPACK_USGOV_DOD
Office 365 E3_USGOV_GCCHIGHENTERPRISEPACK_USGOV_GCCHIGH
Office 365 A3 for facultyENTERPRISEPACKPLUS_FACULTY
Office 365 A3 for studentsENTERPRISEPACKPLUS_STUDENT
Office 365 E5ENTERPRISEPREMIUM
Office 365 A5 for facultyENTERPRISEPREMIUM_FACULTY
Office 365 G5 GCCENTERPRISEPREMIUM_GOV
Office 365 E5 Without Audio ConferencingENTERPRISEPREMIUM_NOPSTNCONF
Office 365 A5 for studentsENTERPRISEPREMIUM_STUDENT
Office 365 E4ENTERPRISEWITHSCAL
Exchange Online ProtectionEOP_ENTERPRISE
Exchange Enterprise CAL Services (EOP DLP)EOP_ENTERPRISE_PREMIUM
Office 365 Advanced ComplianceEQUIVIO_ANALYTICS
Office 365 Advanced Compliance for GCCEQUIVIO_ANALYTICS_GOV
Exchange Online EssentialsEXCHANGE_S_ESSENTIALS
Exchange Online Archiving for Exchange ServerEXCHANGEARCHIVE
Exchange Online Archiving for Exchange OnlineEXCHANGEARCHIVE_ADDON
Exchange Online KioskEXCHANGEDESKLESS
Exchange Online (Plan 2)EXCHANGEENTERPRISE
Exchange Online Essentials (ExO P1 Based)EXCHANGEESSENTIALS
Exchange Online (Plan 1)EXCHANGESTANDARD
Exchange Online (Plan 1) for Alumni with YammerEXCHANGESTANDARD_ALUMNI
Exchange Online (Plan 1) for GCCEXCHANGESTANDARD_GOV
Exchange Online (Plan 1) for StudentsEXCHANGESTANDARD_STUDENT
Exchange Online POPEXCHANGETELCO
Microsoft Threat Experts – Experts on DemandEXPERTS_ON_DEMAND
Power Automate per flow planFLOW_BUSINESS_PROCESS
Microsoft Power Automate FreeFLOW_FREE
Microsoft Power Automate Plan 2FLOW_P2
Power Automate per user planFLOW_PER_USER
Power Automate per user plan deptFLOW_PER_USER_DEPT
Power Automate per user plan for GovernmentFLOW_PER_USER_GCC
Dynamics 365 Customer Voice TrialFORMS_PRO
Dynamics 365 Customer Voice Additional ResponsesForms_Pro_AddOn
Dynamics 365 Customer Voice USLForms_Pro_USL
Dynamics 365 GuidesGUIDES_USER
Microsoft 365 E5 SecurityIDENTITY_THREAT_PROTECTION
Microsoft 365 E5 Security for EMS E5IDENTITY_THREAT_PROTECTION_FOR_EMS_E5
Microsoft 365 E5 ComplianceINFORMATION_PROTECTION_COMPLIANCE
SharePoint SyntexIntelligent_Content_Services
IntuneINTUNE_A
Microsoft Intune DeviceINTUNE_A_D
Microsoft Intune Device for GovernmentINTUNE_A_D_GOV
Intune for EducationINTUNE_EDU
Microsoft Intune SMBINTUNE_SMB
Microsoft Imagine AcademyIT_ACADEMY_AD
Office 365 Small BusinessLITEPACK
Office 365 Small Business PremiumLITEPACK_P2
Microsoft 365 E5 Suite featuresM365_E5_SUITE_COMPONENTS
Microsoft 365 F1M365_F1
Microsoft 365 F1M365_F1_COMM
Microsoft 365 F3 GCCM365_F1_GOV
Microsoft 365 G3 GCCM365_G3_GOV
Microsoft 365 GCC G5M365_G5_GCC
Microsoft 365 Security and Compliance for Firstline WorkersM365_SECURITY_COMPLIANCE_FOR_FLW
Microsoft 365 A1M365EDU_A1
Microsoft 365 A3 for FacultyM365EDU_A3_FACULTY
Microsoft 365 A3 for StudentsM365EDU_A3_STUDENT
Microsoft 365 A3 for students use benefitM365EDU_A3_STUUSEBNFT
Microsoft 365 A3 – Unattended License for students use benefitM365EDU_A3_STUUSEBNFT_RPA1
Microsoft 365 A5 for FacultyM365EDU_A5_FACULTY
Microsoft 365 A5 without Audio Conferencing for students use benefitM365EDU_A5_NOPSTNCONF_STUUSEBNFT
Microsoft 365 A5 for StudentsM365EDU_A5_STUDENT
Microsoft 365 A5 for students use benefitM365EDU_A5_STUUSEBNFT
Microsoft Teams Shared DevicesMCOCAP
Microsoft Teams Shared Devices for GCCMCOCAP_GOV
Microsoft Teams Phone StandardMCOEV
Microsoft Teams Phone Standard for DODMCOEV_DOD
Microsoft Teams Phone Standard for FacultyMCOEV_FACULTY
Microsoft Teams Phone Standard for GCCHIGHMCOEV_GCCHIGH
Microsoft Teams Phone Standard for GCCMCOEV_GOV
Microsoft Teams Phone Standard for StudentsMCOEV_STUDENT
Microsoft Teams Phone Standard for TELSTRAMCOEV_TELSTRA
Microsoft Teams Phone Standard_USGOV_DODMCOEV_USGOV_DOD
Microsoft Teams Phone Standard_USGOV_GCCHIGHMCOEV_USGOV_GCCHIGH
Microsoft Teams Phone Standard for Small and Medium BusinessMCOEVSMB_1
Skype for Business Online (Plan 1)MCOIMP
Microsoft 365 Audio Conferencing Pay-Per-Minute – EAMCOMEETACPEA
Microsoft 365 Audio ConferencingMCOMEETADV
Microsoft 365 Audio Conferencing for GCCMCOMEETADV_GOV
Microsoft 365 Domestic Calling Plan for GCCMCOPSTN_1_GOV
Microsoft 365 Domestic Calling Plan (120 Minutes)MCOPSTN_5
Skype for Business PSTN Domestic CallingMCOPSTN1
Skype for Business PSTN Domestic and International CallingMCOPSTN2
Skype for Business PSTN Domestic Calling (120 Minutes)MCOPSTN5
Communications CredtisMCOPSTNC
TELSTRA Calling for O365MCOPSTNEAU2
Skype for Business PSTN Usage Calling PlanMCOPSTNPP
Skype for Business Online (Plan 2)MCOSTANDARD
Teams Phone with Calling PlanMCOTEAMS_ESSENTIALS
Microsoft Defender for Endpoint ServerMDATP_Server
Microsoft Defender for Endpoint P2_XPLATMDATP_XPLAT
Microsoft Teams Rooms StandardMEETING_ROOM
Microsoft Teams Rooms Standard without Audio ConferencingMEETING_ROOM_NOAUDIOCONF
Microsoft Azure Multi-Factor AuthenticationMFA_STANDALONE
Microsoft 365 E3 (500 seats min)_HUBMicrosoft_365_E3
Microsoft 365 E5 (500 seats min)_HUBMicrosoft_365_E5
Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUBMicrosoft_365_E5_without_Audio_Conferencing
Microsoft Business CenterMICROSOFT_BUSINESS_CENTER
App governance add-on to Microsoft Defender for Cloud AppsMicrosoft_Cloud_App_Security_App_Governance_Add_On
Microsoft Intune SuiteMicrosoft_Intune_Suite
Dynamics 365 Remote AssistMICROSOFT_REMOTE_ASSIST
Dynamics 365 Remote Assist HoloLensMICROSOFT_REMOTE_ASSIST_HOLOLENS
Microsoft Teams Audio Conferencing select dial-outMicrosoft_Teams_Audio_Conferencing_select_dial_out
Microsoft Teams PremiumMicrosoft_Teams_Premium
Microsoft Teams Rooms BasicMicrosoft_Teams_Rooms_Basic
Microsoft Teams Rooms Basic without Audio ConferencingMicrosoft_Teams_Rooms_Basic_without_Audio_Conferencing
Microsoft Teams Rooms ProMicrosoft_Teams_Rooms_Pro
Microsoft Teams Rooms Pro without Audio ConferencingMicrosoft_Teams_Rooms_Pro_without_Audio_Conferencing
Office 365 Midsize BusinessMIDSIZEPACK
Microsoft Teams TrialMS_TEAMS_IW
Teams Rooms PremiumMTR_PREM
Nonprofit PortalNONPROFIT_PORTAL
Microsoft 365 Apps for BusinessO365_BUSINESS
Microsoft 365 Business BasicO365_BUSINESS_ESSENTIALS
Microsoft 365 Business StandardO365_BUSINESS_PREMIUM
Microsoft 365 Apps for enterprise (device)OFFICE_PROPLUS_DEVICE1
Multi-Geo Capabilities in Office 365OFFICE365_MULTIGEO
Microsoft 365 Apps for EnterpriseOFFICESUBSCRIPTION
Microsoft 365 Apps for FacultyOFFICESUBSCRIPTION_FACULTY
Microsoft 365 Apps for StudentsOFFICESUBSCRIPTION_STUDENT
Power BI Premium P1PBI_PREMIUM_P1_ADDON
Power BI Premium Per UserPBI_PREMIUM_PER_USER
Power BI Premium Per User Add-OnPBI_PREMIUM_PER_USER_ADDON
Power BI Premium Per User DeptPBI_PREMIUM_PER_USER_DEPT
Microsoft Teams Phone Resource AccountPHONESYSTEM_VIRTUALUSER
Microsoft Teams Phone Resource Account for GCCPHONESYSTEM_VIRTUALUSER_GOV
Power BI for Office 365 Add-OnPOWER_BI_ADDON
Power BIPOWER_BI_INDIVIDUAL_USER
Power BI ProPOWER_BI_PRO
Power BI Pro CEPOWER_BI_PRO_CE
Power BI Pro DeptPOWER_BI_PRO_DEPT
Power BI Pro for FacultyPOWER_BI_PRO_FACULTY
Power BI (free)POWER_BI_STANDARD
Power Pages vTrial for MakersPower_Pages_vTrial_for_Makers
Microsoft Power Apps for DeveloperPOWERAPPS_DEV
Power Apps and Logic FlowsPOWERAPPS_INDIVIDUAL_USER
PowerApps Plan 1 for GovernmentPOWERAPPS_P1_GOV
Power Apps per app planPOWERAPPS_PER_APP
PowerApps per app baseline accessPOWERAPPS_PER_APP_IW
Power Apps per app plan (1 app or portal)POWERAPPS_PER_APP_NEW
Power Apps per user planPOWERAPPS_PER_USER
Power Apps per user plan for GovernmentPOWERAPPS_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 GovernmentPOWERAPPS_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-onPOWERAPPS_PORTALS_PAGEVIEW
Power Apps Portals page view capacity add-on for GovernmentPOWERAPPS_PORTALS_PAGEVIEW_GCC
Microsoft Power Apps Plan 2 TrialPOWERAPPS_VIRAL
Power Automate per user with attended RPA planPOWERAUTOMATE_ATTENDED_RPA
Power Automate unattended RPA add-onPOWERAUTOMATE_UNATTENDED_RPA
Power BI Pro for GCCPOWERBI_PRO_GOV
Microsoft Power Apps Plan 2 (Qualified Offer)POWERFLOW_P2
Privacy Management – riskPRIVACY_MANAGEMENT_RISK
Privacy Management – risk for EDUPRIVACY_MANAGEMENT_RISK_EDU
Privacy Management – risk GCCPRIVACY_MANAGEMENT_RISK_GCC
Privacy Management – risk_USGOV_DODPRIVACY_MANAGEMENT_RISK_USGOV_DOD
Privacy Management – risk_USGOV_GCCHIGHPRIVACY_MANAGEMENT_RISK_USGOV_GCCHIGH
Privacy Management – subject rights request (1) for EDUPRIVACY_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) GCCPRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_1_V2_GCC
Privacy Management – subject rights request (1) USGOV_DODPRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_1_V2_USGOV_DOD
Privacy Management – subject rights request (1) USGOV_GCCHIGHPRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_1_V2_USGOV_GCCHIGH
Privacy Management – subject rights request (10) for EDUPRIVACY_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) GCCPRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_10_V2_GCC
Privacy Management – subject rights request (10) USGOV_DODPRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_10_V2_USGOV_DOD
Privacy Management – subject rights request (10) USGOV_GCCHIGHPRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_10_V2_USGOV_GCCHIGH
Privacy Management – subject rights request (100) for EDUPRIVACY_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) GCCPRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_100_V2_GCC
Privacy Management – subject rights request (100) USGOV_DODPRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_100_V2_USGOV_DOD
Privacy Management – subject rights request (100) USGOV_GCCHIGHPRIVACY_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 EDUPRIVACY_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 IWsPROJECT_MADEIRA_PREVIEW_IW_SKU
Project Plan 1PROJECT_P1
Project Plan 1 (for Department)PROJECT_PLAN1_DEPT
Project Plan 3 (for Department)PROJECT_PLAN3_DEPT
Project for Office 365PROJECTCLIENT
Project Online EssentialsPROJECTESSENTIALS
Project Online Essentials for FacultyPROJECTESSENTIALS_FACULTY
Project Online Essentials for GCCPROJECTESSENTIALS_GOV
Project Online Premium Without Project ClientPROJECTONLINE_PLAN_1
Project Online With Project for Office 365PROJECTONLINE_PLAN_2
Project Online PremiumPROJECTPREMIUM
Project Plan 5 for GCCPROJECTPREMIUM_GOV
Project Plan 3PROJECTPROFESSIONAL
Project Plan 3 for FacultyPROJECTPROFESSIONAL_FACULTY
Project Plan 3 for GCCPROJECTPROFESSIONAL_GOV
Azure Information Protection Plan 1RIGHTSMANAGEMENT
Rights Management AdhocRIGHTSMANAGEMENT_ADHOC
Rights Management Service Basic Content ProtectionRMSBASIC
SharePoint Online (Plan 2)SHAREPOINTENTERPRISE
SharePoint Online (Plan 1)SHAREPOINTSTANDARD
Office 365 Extra File StorageSHAREPOINTSTORAGE
Office 365 Extra File Storage for GCCSHAREPOINTSTORAGE_GOV
Dynamics 365 for TalentSKU_Dynamics_365_for_HCM_Trial
Business Apps (free)SMB_APPS
Microsoft 365 Apps for BusinessSMB_BUSINESS
Microsoft 365 Business BasicSMB_BUSINESS_ESSENTIALS
Microsoft 365 Business Standard – Prepaid LegacySMB_BUSINESS_PREMIUM
Dynamics 365 AI for Market Insights (Preview)SOCIAL_ENGAGEMENT_APP_USER
Microsoft 365 Business PremiumSPB
Microsoft 365 E3SPE_E3
Microsoft 365 E3 – Unattended LicenseSPE_E3_RPA1
Microsoft 365 E3_USGOV_DODSPE_E3_USGOV_DOD
Microsoft 365 E3_USGOV_GCCHIGHSPE_E3_USGOV_GCCHIGH
Microsoft 365 E5SPE_E5
Microsoft 365 E5 with Calling MinutesSPE_E5_CALLINGMINUTES
Microsoft 365 E5 without Audio ConferencingSPE_E5_NOPSTNCONF
Microsoft 365 F3SPE_F1
Microsoft 365 F5 Compliance Add-onSPE_F5_COMP
Microsoft 365 F5 Compliance Add-on AR (DOD)_USGOV_DODSPE_F5_COMP_AR_D_USGOV_DOD
Microsoft 365 F5 Compliance Add-on AR_USGOV_GCCHIGHSPE_F5_COMP_AR_USGOV_GCCHIGH
Microsoft 365 F5 Compliance Add-on GCCSPE_F5_COMP_GCC
Microsoft 365 F5 Security Add-onSPE_F5_SEC
Microsoft 365 F5 Security + Compliance Add-onSPE_F5_SECCOMP
App Connect IWSPZA_IW
Office 365 E1STANDARDPACK
Office 365 G1 GCCSTANDARDPACK_GOV
Office 365 E2STANDARDWOFFPACK
Office 365 A1 for facultySTANDARDWOFFPACK_FACULTY
Office 365 A1 Plus for facultySTANDARDWOFFPACK_IW_FACULTY
Office 365 A1 Plus for studentsSTANDARDWOFFPACK_IW_STUDENT
Office 365 A1 for studentsSTANDARDWOFFPACK_STUDENT
Microsoft StreamSTREAM
Microsoft Stream Plan 2STREAM_P2
Microsoft Stream Storage Add-On (500 GB)STREAM_STORAGE
Microsoft Teams Commercial CloudTEAMS_COMMERCIAL_TRIAL
Microsoft Teams EssentialsTeams_Ess
Microsoft Teams ExploratoryTEAMS_EXPLORATORY
Microsoft Teams (Free)TEAMS_FREE
Microsoft Defender for Office 365 (Plan 2)THREAT_INTELLIGENCE
Microsoft Defender for Office 365 (Plan 2) GCCTHREAT_INTELLIGENCE_GOV
Viva TopicsTOPIC_EXPERIENCES
Microsoft Defender Vulnerability Management Add-onTVM_Premium_Add_on
Universal PrintUNIVERSAL_PRINT
Power Virtual AgentVIRTUAL_AGENT_BASE
Power Virtual Agent User LicenseVIRTUAL_AGENT_USL
Visio Plan 1VISIO_PLAN1_DEPT
Visio Plan 2VISIO_PLAN2_DEPT
Visio Online Plan 2VISIOCLIENT
Visio Plan 2 for GCCVISIOCLIENT_GOV
Visio Online Plan 1VISIOONLINE_PLAN1
Microsoft Viva SuiteVIVA
OneDrive for Business (Plan 2)WACONEDRIVEENTERPRISE
OneDrive for Business (Plan 1)WACONEDRIVESTANDARD
Microsoft Defender for EndpointWIN_DEF_ATP
Windows 10/11 Enterprise E5 (Original)WIN_ENT_E5
Windows 10 Enterprise A3 for facultyWIN10_ENT_A3_FAC
Windows 10 Enterprise A3 for studentsWIN10_ENT_A3_STU
Windows 10 Enterprise E3WIN10_PRO_ENT_SUB
Windows 10 Enterprise E3WIN10_VDA_E3
Windows 10 Enterprise E5WIN10_VDA_E5
Windows 365 Shared Use 2 vCPU 4 GB 128 GBWindows_365_S_2vCPU_4GB_128GB
Windows 365 Shared Use 2 vCPU 4 GB 256 GBWindows_365_S_2vCPU_4GB_256GB
Windows 365 Shared Use 2 vCPU 4 GB 64 GBWindows_365_S_2vCPU_4GB_64GB
Windows 365 Shared Use 2 vCPU 8 GB 128 GBWindows_365_S_2vCPU_8GB_128GB
Windows 365 Shared Use 2 vCPU 8 GB 256 GBWindows_365_S_2vCPU_8GB_256GB
Windows 365 Shared Use 4 vCPU 16 GB 128 GBWindows_365_S_4vCPU_16GB_128GB
Windows 365 Shared Use 4 vCPU 16 GB 256 GBWindows_365_S_4vCPU_16GB_256GB
Windows 365 Shared Use 4 vCPU 16 GB 512 GBWindows_365_S_4vCPU_16GB_512GB
Windows 365 Shared Use 8 vCPU 32 GB 128 GBWindows_365_S_8vCPU_32GB_128GB
Windows 365 Shared Use 8 vCPU 32 GB 256 GBWindows_365_S_8vCPU_32GB_256GB
Windows 365 Shared Use 8 vCPU 32 GB 512 GBWindows_365_S_8vCPU_32GB_512GB
Windows Store for BusinessWINDOWS_STORE
Windows 10 Enterprise E5 Commercial (GCC Compatible)WINE5_GCC_COMPAT
Microsoft Workplace AnalyticsWORKPLACE_ANALYTICS
Windows Store for Business EDU FacultyWSFB_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 NameID
Microsoft Azure Active Directory BasicAAD_BASIC
Azure Active Directory Basic for EducationAAD_BASIC_EDU
Azure Active Directory for EducationAAD_EDU
Azure Active Directory Premium P1AAD_PREMIUM
Azure Active Directory Premium P2AAD_PREMIUM_P2
Azure Active DirectoryAAD_SMB
SecOps Investigation for MDIADALLOM_FOR_AATP
Cloud App Security DiscoveryADALLOM_S_DISCOVERY
Office 365 Cloud App SecurityADALLOM_S_O365
Microsoft Cloud App SecurityADALLOM_S_STANDALONE
Microsoft Defender for Cloud Apps for DODADALLOM_S_STANDALONE_DOD
Microsoft Defender for IdentityATA
Microsoft Defender for Office 365 (Plan 1)ATP_ENTERPRISE
Microsoft Defender for Office 365 (Plan 1) for GovernmentATP_ENTERPRISE_GOV
Power BI Pro for GovernmentBI_AZURE_P_2_GOV
Power BI (free)BI_AZURE_P0
Microsoft Power BI Reporting and Analytics Plan 1BI_AZURE_P1
Power BI ProBI_AZURE_P2
Power BI Premium Per UserBI_AZURE_P3
Data Loss PreventionBPOS_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 ViralCCIBOTS_PRIVPREV_VIRAL
Common Data Service Attended RPACDS_ATTENDED_RPA
Common Data Service for Customer Insights TrialCDS_CUSTOMER_INSIGHTS_TRIAL
Common Data Service for Apps Database CapacityCDS_DB_CAPACITY
Common Data Service for Apps Database Capacity for GovernmentCDS_DB_CAPACITY_GOV
Common Data Service for Apps File CapacityCDS_FILE_CAPACITY
Common data service for Flow per business process planCDS_Flow_Business_Process
Common Data ServiceCDS_FORM_PRO_USL
Common Data Service for Apps Log CapacityCDS_LOG_CAPACITY
Common Data Service for SharePoint SyntexCDS_O365_E5_KM
Common Data Service for TeamsCDS_O365_F1
Common Data Service for Teams F1 GCCCDS_O365_F1_GCC
Common Data Service for Teams P1CDS_O365_P1
Common Data Service for Teams P1 GCCCDS_O365_P1_GCC
Common Data Service for TeamsCDS_O365_P2
Common Data Service for Teams P2 GCCCDS_O365_P2_GCC
Common Data Service for TeamsCDS_O365_P3
Common Data Service for TeamsCDS_O365_P3_GCC
CDS PowerApps per app planCDS_PER_APP
CDS Per app baseline accessCDS_PER_APP_IWTRIAL
Common Data Service Power Apps Portals Login CapacityCDS_POWERAPPS_PORTALS_LOGIN
Common Data Service Power Apps Portals Login Capacity for GCCCDS_POWERAPPS_PORTALS_LOGIN_GCC
CDS PowerApps Portals page view capacity add-onCDS_POWERAPPS_PORTALS_PAGEVIEW
CDS PowerApps Portals page view capacity add-on for GCCCDS_POWERAPPS_PORTALS_PAGEVIEW_GCC
Common Data Service for Remote AssistCDS_REMOTE_ASSIST
Common Data Service Unattended RPACDS_UNATTENDED_RPA
Common Data Service for Virtual Agent BaseCDS_VIRTUAL_AGENT_BASE
Common Data ServiceCDS_VIRTUAL_AGENT_USL
AI Builder capacity add-onCDSAICAPACITY
AI Builder capacity Per App add-onCDSAICAPACITY_PERAPP
AI Builder capacity Per User add-onCDSAICAPACITY_PERUSER
AI Builder capacity Per User add-onCDSAICAPACITY_PERUSER_NEW
Microsoft Communications ComplianceCOMMUNICATIONS_COMPLIANCE
Microsoft Communications DLPCOMMUNICATIONS_DLP
Compliance Manager Premium Assessment Add-OnCOMPLIANCE_MANAGER_PREMIUM_ASSESSMENT_ADDON
Information Protection and Governance Analytics – PremiumContent_Explorer
Information Protection and Governance Analytics – StandardContentExplorer_Standard
Microsoft Viva TopicsCORTEX
Windows 365 Enterprise 2 vCPU 4 GB 128 GBCPC_1
Windows 365 Enterprise 2 vCPU 8 GB 128 GBCPC_2
Windows 365 Business 1 vCPU 2 GB 64 GBCPC_B_1C_2RAM_64GB
Windows 365 Business 2 vCPU 4 GB 128 GBCPC_B_2C_4RAM_128GB
Windows 365 Business 2 vCPU 4 GB 256 GBCPC_B_2C_4RAM_256GB
Windows 365 Business 2 vCPU 4 GB 64 GBCPC_B_2C_4RAM_64GB
Windows 365 Business 2 vCPU 8 GB 256 GBCPC_B_2C_8RAM_256GB
Windows 365 Business 4 vCPU 16 GB 128 GBCPC_B_4C_16RAM_128GB
Windows 365 Business 4 vCPU 16 GB 256 GBCPC_B_4C_16RAM_256GB
Windows 365 Business 4 vCPU 16 GB 512 GBCPC_B_4C_16RAM_512GB
Windows 365 Business 8 vCPU 32 GB 128 GBCPC_B_8C_32RAM_128GB
Windows 365 Business 8 vCPU 32 GB 256 GBCPC_B_8C_32RAM_256GB
Windows 365 Business 8 vCPU 32 GB 512 GBCPC_B_8C_32RAM_512GB
Windows 365 Enterprise 1 vCPU 2 GB 64 GBCPC_E_1C_2GB_64GB
Windows 365 Enterprise 2 vCPU 4 GB 256 GBCPC_E_2C_4GB_256GB
Windows 365 Enterprise 2 vCPU 4 GB 64 GBCPC_E_2C_4GB_64GB
Windows 365 Enterprise 2 vCPU 8 GB 256 GBCPC_E_2C_8GB_256GB
Windows 365 Enterprise 4 vCPU 16 GB 128 GBCPC_E_4C_16GB_128GB
Windows 365 Enterprise 4 vCPU 16 GB 256 GBCPC_E_4C_16GB_256GB
Windows 365 Enterprise 4 vCPU 16 GB 512 GBCPC_E_4C_16GB_512GB
Windows 365 Enterprise 8 vCPU 32 GB 128 GBCPC_E_8C_32GB_128GB
Windows 365 Enterprise 8 vCPU 32 GB 256 GBCPC_E_8C_32GB_256GB
Windows 365 Enterprise 8 vCPU 32 GB 512 GBCPC_E_8C_32GB_512GB
Windows 365 Shared Use 2 vCPU 4 GB 128 GBCPC_S_2C_4GB_128GB
Windows 365 Shared Use 2 vCPU 4 GB 256 GBCPC_S_2C_4GB_256GB
Windows 365 Shared Use 2 vCPU 4 GB 64 GBCPC_S_2C_4GB_64GB
Windows 365 Shared Use 2 vCPU 8 GB 128 GBCPC_S_2C_8GB_128GB
Windows 365 Shared Use 2 vCPU 8 GB 256 GBCPC_S_2C_8GB_256GB
Windows 365 Shared Use 4 vCPU 16 GB 128 GBCPC_S_4C_16GB_128GB
Windows 365 Shared Use 4 vCPU 16 GB 256 GBCPC_S_4C_16GB_256GB
Windows 365 Shared Use 4 vCPU 16 GB 512 GBCPC_S_4C_16GB_512GB
Windows 365 Shared Use 8 vCPU 32 GB 128 GBCPC_S_8C_32GB_128GB
Windows 365 Shared Use 8 vCPU 32 GB 256 GBCPC_S_8C_32GB_256GB
Windows 365 Shared Use 8 vCPU 32 GB 512 GBCPC_S_8C_32GB_512GB
Windows 365 Business 2 vCPU, 8 GB, 128 GBCPC_SS_2
CRM Hybrid ConnectorCRM_HYBRIDCONNECTOR
Microsoft Dynamics CRM Online – Portal Add-OnCRM_ONLINE_PORTAL
Microsoft Dynamics CRM Online InstanceCRMINSTANCE
Microsoft Dynamics CRM Online BasicCRMPLAN2
Microsoft Dynamics CRM Online ProfessionalCRMSTANDARD
Microsoft Dynamics CRM Online Storage Add-OnCRMSTORAGE
Microsoft Dynamics CRM Online Additional Test InstanceCRMTESTINSTANCE
Microsoft Customer KeyCUSTOMER_KEY
Dynamics Customer Voice Add-OnCUSTOMER_VOICE_ADDON
Dynamics 365 Customer Voice Base PlanCustomer_Voice_Base
Customer Voice for Dynamics 365 vTrialCUSTOMER_VOICE_DYN365_VIRAL_TRIAL
Asset Maintenance Add-inD365_AssetforSCM
Dynamics 365 Customer Service Insights for CE PlanD365_CSI_EMBED_CE
Dynamics 365 Customer Service Insights for CS EnterpriseD365_CSI_EMBED_CSEnterprise
Dynamics 365 for Customer Service Enterprise AttachD365_CUSTOMER_SERVICE_ENT_ATTACH
Dynamics 365 for Field Service AttachD365_FIELD_SERVICE_ATTACH
Microsoft Dynamics 365 for FinanceD365_Finance
Iot Intelligence Add-in for D365 Supply Chain ManagementD365_IOTFORSCM
IoT Intelligence Add-in Additional MachinesD365_IOTFORSCM_ADDITIONAL
Dynamics 365 Project OperationsD365_ProjectOperations
Dynamics 365 Project Operations CDSD365_ProjectOperationsCDS
Dynamics 365 for Sales Enterprise AttachD365_SALES_ENT_ATTACH
Dynamics 365 for Sales Pro AttachD365_SALES_PRO_ATTACH
Dynamics 365 for Sales Professional TrialD365_SALES_PRO_IW
Dynamics 365 for Sales Professional TrialD365_SALES_PRO_IW_Trial
Dynamics 365 for Supply Chain ManagementD365_SCM
Microsoft Data InvestigationsDATA_INVESTIGATIONS
Dataverse for PADDATAVERSE_FOR_POWERAUTOMATE_DESKTOP
Dataverse for Power Apps per appDATAVERSE_POWERAPPS_PER_APP_NEW
Common Data ServiceDDYN365_CDS_DYN_P2
Microsoft StaffHubDeskless
Microsoft Relationship Sales solutionDYN365_ ENTERPRISE _RELATIONSHIP_SALES
Dynamics 365 AI for Customer Service TrialDYN365_AI_SERVICE_INSIGHTS
Dynamics 365 Business Central Database CapacityDYN365_BUSCENTRAL_DB_CAPACITY
Dynamics 365 Business Central Additional Environment AddonDYN365_BUSCENTRAL_ENVIRONMENT
Dynamics 365 Business Central PremiumDYN365_BUSCENTRAL_PREMIUM
Dynamics 365 MarketingDYN365_BUSINESS_Marketing
Common Data Service for CCI BotsDYN365_CDS_CCI_BOTS
Common Data Service – DEV ViralDYN365_CDS_DEV_VIRAL
Common Data ServiceDYN365_CDS_DYN_APPS
Common Data Service for Dynamics 365 FinanceDYN365_CDS_FINANCE
Common Data Service for Project P1DYN365_CDS_FOR_PROJECT_P1
Common Data ServiceDYN365_CDS_FORMS_PRO
Common Data ServiceDYN365_CDS_GUIDES
Common Data ServiceDYN365_CDS_O365_F1
Common Data Service – O365 F1DYN365_CDS_O365_F1_GCC
Common Data Service – O365 P1DYN365_CDS_O365_P1
Common Data Service – O365 P1 GCCDYN365_CDS_O365_P1_GCC
Common Data ServiceDYN365_CDS_O365_P2
Common Data Service – O365 P2 GCCDYN365_CDS_O365_P2_GCC
Common Data ServiceDYN365_CDS_O365_P3
Common Data ServiceDYN365_CDS_O365_P3_GCC
Common Data Service for GovernmentDYN365_CDS_P1_GOV
Common Data Service – P2DYN365_CDS_P2
Common Data Service for GovernmentDYN365_CDS_P2_GOV
Common Data Service for ProjectDYN365_CDS_PROJECT
Common Data Service for Dynamics 365 Supply Chain ManagementDYN365_CDS_SUPPLYCHAINMANAGEMENT
Common Data Service – ViralDYN365_CDS_VIRAL
Dynamics 365 for Customer Service ChatDYN365_CS_CHAT
Dynamics 365 Customer Service Chat Application IntegrationDYN365_CS_CHAT_FPA
Dynamics 365 Customer Service Enterprise vTrialDYN365_CS_ENTERPRISE_VIRAL_TRIAL
Dynamics 365 Customer Service Digital Messaging vTrialDYN365_CS_MESSAGING_VIRAL_TRIAL
Dynamics 365 Customer Service Voice vTrialDYN365_CS_VOICE_VIRAL_TRIAL
Dynamics 365 Customer Insights Engagement Insights ViralDYN365_CUSTOMER_INSIGHTS_ENGAGEMENT_INSIGHTS_BASE_TRIAL
Dynamics 365 Customer Insights Viral PlanDYN365_CUSTOMER_INSIGHTS_VIRAL
Dynamics 365 for Customer Service ProDYN365_CUSTOMER_SERVICE_PRO
Dynamics 365 for Case ManagementDYN365_ENTERPRISE_CASE_MANAGEMENT
Microsoft Social Engagement – Service DiscontinuationDYN365_ENTERPRISE_CUSTOMER_SERVICE
Dynamics 365 for Field ServiceDYN365_ENTERPRISE_FIELD_SERVICE
Dynamics 365 P1DYN365_ENTERPRISE_P1
Dynamics 365 P1 Trial for Information WorkersDYN365_ENTERPRISE_P1_IW
Dynamics 365 for SalesDYN365_ENTERPRISE_SALES
Dynamics 365 for Talent – Attract Experience Team MemberDYN365_Enterprise_Talent_Attract_TeamMember
Dynamics 365 for Talent – Onboard ExperienceDYN365_Enterprise_Talent_Onboard_TeamMember
Dynamics 365 for Team MembersDYN365_ENTERPRISE_TEAM_MEMBERS
Dynamics 365 Business Central External AccountantDYN365_FINANCIALS_ACCOUNTANT
Dynamics 365 for Business Central EssentialsDYN365_FINANCIALS_BUSINESS
Dynamics 365 for Team MembersDYN365_FINANCIALS_TEAM_MEMBERS
Dynamics 365 Field Service Enterprise vTrialDYN365_FS_ENTERPRISE_VIRAL_TRIAL
Dynamics 365 for Marketing 50K Addnl ContactsDYN365_MARKETING_50K_CONTACT_ADDON
Dynamics 365 for MarketingDYN365_MARKETING_APP
Dynamics 365 for Marketing Additional ApplicationDYN365_MARKETING_APPLICATION_ADDON
Dynamics 365 for Marketing MSE UserDYN365_MARKETING_MSE_USER
Dynamics 365 Marketing Sandbox Application AddOnDYN365_MARKETING_SANDBOX_APPLICATION_ADDON
Dynamics 365 for Marketing USLDYN365_MARKETING_USER
Dynamics 365 for Finance and Operations Enterprise edition – Regulatory ServiceDYN365_REGULATORY_SERVICE
Dynamics 365 for Retail DeviceDYN365_RETAIL_DEVICE
Dynamics 365 Sales Enterprise vTrialDYN365_SALES_ENTERPRISE_VIRAL_TRIAL
Dynamics 365 AI for Sales (Embedded)DYN365_SALES_INSIGHTS
Dynamics 365 Sales Insights vTrialDYN365_SALES_INSIGHTS_VIRAL_TRIAL
Dynamics 365 for Sales ProfessionalDYN365_SALES_PRO
Dynamics 365 for TalentDYN365_TALENT_ENTERPRISE
Dynamics 365 Team MembersDYN365_TEAM_MEMBERS
Microsoft InvoicingDYN365BC_MS_INVOICING
Dynamics 365 for HCM TrialDynamics_365_for_HCM_Trial
Dynamics 365 for OperationsDynamics_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 TestingDynamics_365_for_Operations_Sandbox_Tier4
Dynamics 365 for Operations Team MembersDYNAMICS_365_FOR_OPERATIONS_TEAM_MEMBERS
Dynamics 365 for Operations DevicesDynamics_365_for_OperationsDevices
Dynamics 365 for RetailDynamics_365_for_Retail
Dynamics 365 for Retail Team MembersDynamics_365_for_Retail_Team_members
Dynamics 365 for Talent Team MembersDynamics_365_for_Talent_Team_members
Dynamics 365 for Talent: AttractDynamics_365_Hiring_Free_PLAN
Dynamics 365 for Talent: OnboardDynamics_365_Onboarding_Free_PLAN
Dynamics 365 for Talent: OnboardDynamics_365_Talent_Onboard
Dynamics 365 Customer Service Insights vTrialDYNB365_CSI_VIRAL_TRIAL
Education AnalyticsEducationAnalyticsP1
Exchange Online ProtectionEOP_ENTERPRISE
Exchange Enterprise CAL Services (EOP DLP)EOP_ENTERPRISE_PREMIUM
Office 365 Advanced eDiscoveryEQUIVIO_ANALYTICS
Office 365 Advanced eDiscovery for GovernmentEQUIVIO_ANALYTICS_GOV
Dynamics 365 Operations Trial EnvironmentERP_TRIAL_INSTANCE
Microsoft Excel Advanced AnalyticsEXCEL_PREMIUM
Microsoft MyAnalytics (Full)EXCHANGE_ANALYTICS
Microsoft MyAnalytics for Government (Full)EXCHANGE_ANALYTICS_GOV
Exchange Online POPEXCHANGE_B_STANDARD
Exchange Foundation for GovernmentEXCHANGE_FOUNDATION_GOV
Exchange Online (P1)EXCHANGE_L_STANDARD
Exchange Online Archiving for Exchange ServerEXCHANGE_S_ARCHIVE
Exchange Online Archiving for Exchange OnlineEXCHANGE_S_ARCHIVE_ADDON
Exchange Online KIOSKEXCHANGE_S_DESKLESS
Exchange Online (Kiosk) for GovernmentEXCHANGE_S_DESKLESS_GOV
Exchange Online (Plan 2)EXCHANGE_S_ENTERPRISE
Exchange Online (Plan 2) for GovernmentEXCHANGE_S_ENTERPRISE_GOV
Exchange EssentialsEXCHANGE_S_ESSENTIALS
Exchange FoundationEXCHANGE_S_FOUNDATION
Exchange Foundation for GovernmentEXCHANGE_S_FOUNDATION_GOV
Exchange Online (Plan 1)EXCHANGE_S_STANDARD
Exchange Online (Plan 1) for GovernmentEXCHANGE_S_STANDARD_GOV
Exchange Online PlanEXCHANGE_S_STANDARD_MIDMARKET
Exchange Online Multi-GeoEXCHANGEONLINE_MULTIGEO
Microsoft Threat Experts – Experts on DemandEXPERTS_ON_DEMAND
Flow per business process planFLOW_BUSINESS_PROCESS
Flow for CCI BotsFLOW_CCI_BOTS
Power Automate for Customer Service ProFLOW_CUSTOMER_SERVICE_PRO
Flow for DeveloperFLOW_DEV_VIRAL
Flow for Dynamics 365FLOW_DYN_APPS
Flow for Dynamics 365FLOW_DYN_P2
Power Automate for Dynamics 365FLOW_DYN_TEAM
Flow for ProjectFLOW_FOR_PROJECT
Power Automate for Dynamics 365 Customer VoiceFLOW_FORMS_PRO
Flow for Office 365FLOW_O365_P1
Power Automate for Office 365 for GovernmentFLOW_O365_P1_GOV
Power Automate for Office 365FLOW_O365_P2
Power Automate for Office 365 for GovernmentFLOW_O365_P2_GOV
Power Automate for Office 365FLOW_O365_P3
Power Automate for Office 365 for GovernmentFLOW_O365_P3_GOV
Power Automate for Office 365 F3FLOW_O365_S1
Power Automate for Office 365 F3 for GovernmentFLOW_O365_S1_GOV
Power Automate (Plan 1) for GovernmentFLOW_P1_GOV
Power Automate (Plan 2)FLOW_P2
Flow FreeFLOW_P2_VIRAL
Flow P2 ViralFLOW_P2_VIRAL_REAL
Power Automate for Power Apps per App PlanFlow_Per_APP
Flow per app baseline accessFlow_Per_APP_IWTRIAL
Flow per user planFLOW_PER_USER
Power Automate per User Plan for GovernmentFLOW_PER_USER_GCC
Power Automate for Power Apps per User PlanFlow_PowerApps_PerUser
Power Automate for Power Apps per User Plan for GCCFlow_PowerApps_PerUser_GCC
Power Automate for Virtual AgentFLOW_VIRTUAL_AGENT_BASE
Power Automate for Virtual AgentFLOW_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 VoiceFORMS_PRO
Microsoft Dynamics 365 Customer Voice Add-onForms_Pro_AddOn
Microsoft Dynamics 365 Customer Voice for Customer Engagement PlanForms_Pro_CE
Microsoft Dynamics 365 Customer Voice for Customer InsightsForms_Pro_Customer_Insights
Microsoft Dynamics 365 Customer Voice for Field ServiceForms_Pro_FS
Microsoft Dynamics 365 Customer Voice for MarketingForms_Pro_Marketing
Microsoft Dynamics 365 Customer Voice for Marketing ApplicationForms_Pro_Marketing_App
Microsoft Dynamics 365 Customer Voice for Relationship SalesForms_Pro_Relationship_Sales
Microsoft Dynamics 365 Customer Voice for Sales EnterpriseForms_Pro_SalesEnt
Microsoft Dynamics 365 Customer Voice for Customer Service EnterpriseForms_Pro_Service
Microsoft Dynamics 365 Customer Voice USLForms_Pro_USL
Graph Connectors Search with IndexGRAPH_CONNECTORS_SEARCH_INDEX
Graph Connectors Search with Index (Microsoft Viva Topics)GRAPH_CONNECTORS_SEARCH_INDEX_TOPICEXP
Dynamics 365 GuidesGUIDES
Microsoft Information GovernanceINFO_GOVERNANCE
Information BarriersINFORMATION_BARRIERS
Microsoft Insider Risk ManagementINSIDER_RISK
Microsoft Insider Risk ManagementINSIDER_RISK_MANAGEMENT
SharePoint SyntexIntelligent_Content_Services
SharePoint Syntex – SPO typeIntelligent_Content_Services_SPO_type
Microsoft IntuneINTUNE_A
Intune Advanced endpoint analyticsIntune_AdvancedEA
MDE SecurityManagementIntune_Defender
Microsoft Intune for EducationINTUNE_EDU
Mobile Device Management for Office 365INTUNE_O365
Intune Plan 2INTUNE_P2
Microsoft IntuneINTUNE_SMBIZ
Intune Endpoint Privilege ManagementIntune-EPM
Microsoft Tunnel for Mobile Application ManagementIntune-MAMTunnel
MS Imagine AcademyIT_ACADEMY_AD
Microsoft Kaizala ProKAIZALA_O365_P1
Microsoft Kaizala ProKAIZALA_O365_P2
Microsoft Kaizala ProKAIZALA_O365_P3
Microsoft Kaizala ProKAIZALA_STANDALONE
Customer LockboxLOCKBOX_ENTERPRISE
Customer Lockbox for GovernmentLOCKBOX_ENTERPRISE_GOV
Microsoft 365 Advanced AuditingM365_ADVANCED_AUDITING
Microsoft 365 Audit PlatformM365_AUDIT_PLATFORM
Microsoft 365 Lighthouse (Plan 1)M365_LIGHTHOUSE_CUSTOMER_PLAN1
Microsoft 365 Lighthouse (Plan 2)M365_LIGHTHOUSE_PARTNER_PLAN1
Microsoft TeamsMCO_TEAMS_IW
Microsoft Teams Premium Virtual AppointmentsMCO_VIRTUAL_APPT
Microsoft 365 Phone SystemMCOEV
Microsoft 365 Phone System for GovernmentMCOEV_GOV
Microsoft 365 Phone Standard Resource AccountMCOEV_VIRTUALUSER
Microsoft 365 Phone Standard Resource Account for GovernmentMCOEV_VIRTUALUSER_GOV
Skype for Business Cloud PBX for Small and Medium BusinessMCOEVSMB
MCO Free for Microsoft Teams (Free)MCOFREE
Skype for Business Online (Plan 1)MCOIMP
Skype for Business Online (Plan 1) for GovernmentMCOIMP_GOV
Skype for Business Online (Plan P1)MCOLITE
Microsoft 365 Audio Conferencing Pay-Per-MinuteMCOMEETACPEA
Microsoft 365 Audio ConferencingMCOMEETADV
Microsoft 365 Audio Conferencing for GovernmentMCOMEETADV_GOV
Microsoft Teams Audio Conferencing with dial-out to select geographiesMCOMEETBASIC
Microsoft 365 Domestic Calling PlanMCOPSTN1
Domestic Calling for GovernmentMCOPSTN1_GOV
Domestic and International Calling PlanMCOPSTN2
MCOPSTN3MCOPSTN3
Microsoft 365 Domestic Calling Plan (120 min)MCOPSTN5
Microsoft 365 Domestic Calling Plan (120 min) at User LevelMCOPSTN8
Communications CreditsMCOPSTNC
Australia Calling PlanMCOPSTNEAU
Skype for Business Online (Plan 2)MCOSTANDARD
Skype for Business Online (Plan 2) for GovernmentMCOSTANDARD_GOV
Skype for Business Online (Plan 2) for MIDSIZMCOSTANDARD_MIDMARKET
Skype for Business Online (Plan 3)MCOVOICECONF
Microsoft Defender for Endpoint Plan 1MDE_LITE
Microsoft Defender for BusinessMDE_SMB
Microsoft Dynamics Marketing Sales Collaboration – Eligibility Criteria ApplyMDM_SALES_COLLABORATION
Microsoft Azure Multi-Factor AuthenticationMFA_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 CenterMICROSOFT_BUSINESS_CENTER
Microsoft 365 Communication ComplianceMICROSOFT_COMMUNICATION_COMPLIANCE
Microsoft eCDNMICROSOFT_ECDN
Microsoft Remote AssistMICROSOFT_REMOTE_ASSIST
Microsoft SearchMICROSOFT_SEARCH
Microsoft Viva Sales Premium with Power AutomateMicrosoft_Viva_Sales_PowerAutomate
Microsoft Viva Sales Premium & TrialMicrosoft_Viva_Sales_PremiumTrial
Microsoft BookingsMICROSOFTBOOKINGS
Microsoft Endpoint DLPMICROSOFTENDPOINTDLP
Microsoft StreamMICROSOFTSTREAM
Minecraft Education EditionMINECRAFT_EDUCATION_EDITION
Information Protection for Office 365 – StandardMIP_S_CLP1
Information Protection for Office 365 – PremiumMIP_S_CLP2
Data Classification in Microsoft 365MIP_S_Exchange
Data Classification in Microsoft 365 – Company LevelMIP_S_EXCHANGE_CO
Microsoft ML-Based ClassificationML_CLASSIFICATION
Meeting Room Managed ServicesMMR_P1
Microsoft 365 DefenderMTP
Insights by MyAnalyticsMYANALYTICS_P2
Insights by MyAnalytics for GovernmentMYANALYTICS_P2_GOV
Microsoft Social Engagement EnterpriseNBENTERPRISE
Microsoft Social Engagement Professional – Eligibility Criteria ApplyNBPROFESSIONALFORCRM
Nonprofit PortalNONPROFIT_PORTAL
NucleusNucleus
Outlook Customer ManagerO365_SB_Relationship_Management
Office 365 BusinessOFFICE_BUSINESS
Microsoft Forms (Plan 2)OFFICE_FORMS_PLAN_2
Microsoft Forms (Plan 3)OFFICE_FORMS_PLAN_3
Office 365 Small Business SubscriptionOFFICE_PRO_PLUS_SUBSCRIPTION_SMBIZ
Microsoft 365 Apps for Enterprise (Device)OFFICE_PROPLUS_DEVICE
Office Shared Computer ActivationOFFICE_SHARED_COMPUTER_ACTIVATION
Office Mobile SubscriptionOFFICEMOBILE_SUBSCRIPTION
Office Mobile Apps for Office 365 for GCCOFFICEMOBILE_SUBSCRIPTION_GOV
Microsoft 365 Apps for enterpriseOFFICESUBSCRIPTION
Microsoft 365 Apps for enterprise GOFFICESUBSCRIPTION_GOV
Microsoft 365 Apps for Enterprise (Unattended)OFFICESUBSCRIPTION_unattended
OneDrive for business BasicONEDRIVE_BASIC
OneDrive for Business Basic for GovernmentONEDRIVE_BASIC_GOV
OneDriveEnterpriseONEDRIVEENTERPRISE
OneDriveStandardONEDRIVESTANDARD
Office 365 Privileged Access ManagementPAM_ENTERPRISE
Power BI Premium PPBI_PREMIUM_P1_ADDON
Power Apps for Dynamics 365 vTrialPOWER_APPS_DYN365_VIRAL_TRIAL
Power Automate RPA AttendedPOWER_AUTOMATE_ATTENDED_RPA
Power Automate for Dynamics 365 vTrialPOWER_AUTOMATE_DYN365_VIRAL_TRIAL
Power Automate for Project P1Power_Automate_For_Project_P1
Power Automate Unattended RPA add-onPOWER_AUTOMATE_UNATTENDED_RPA
Power Pages Internal UserPower_Pages_Internal_User
Power Pages vTrial for MakersPOWER_PAGES_VTRIAL
Power Virtual Agents for ChatPOWER_VIRTUAL_AGENTS_D365_CS_CHAT
Power Virtual Agents for Office 365POWER_VIRTUAL_AGENTS_O365_F1
Power Virtual Agents for Office 365 P1POWER_VIRTUAL_AGENTS_O365_P1
Power Virtual Agents for Office 365POWER_VIRTUAL_AGENTS_O365_P2
Power Virtual Agents for Office 365POWER_VIRTUAL_AGENTS_O365_P3
Power Apps for Customer Service ProPOWERAPPS_CUSTOMER_SERVICE_PRO
PowerApps for DeveloperPOWERAPPS_DEV_VIRAL
PowerApps for Dynamics 365POWERAPPS_DYN_APPS
Power Apps for Dynamics 365POWERAPPS_DYN_P2
Power Apps for Dynamics 365POWERAPPS_DYN_TEAM
Power Apps for GuidesPOWERAPPS_GUIDES
PowerApps for Office 365POWERAPPS_O365_P1
Power Apps for Office 365 for GovernmentPOWERAPPS_O365_P1_GOV
Power Apps for Office 365POWERAPPS_O365_P2
Power Apps for Office 365 for GovernmentPOWERAPPS_O365_P2_GOV
Power Apps for Office 365 (Plan 3)POWERAPPS_O365_P3
Power Apps for Office 365 for GovernmentPOWERAPPS_O365_P3_GOV
Power Apps for Office 365 F3POWERAPPS_O365_S1
Power Apps for Office 365 F3 for GovernmentPOWERAPPS_O365_S1_GOV
PowerApps Plan 1 for GovernmentPOWERAPPS_P1_GOV
Power Apps (Plan 2)POWERAPPS_P2
PowerApps TrialPOWERAPPS_P2_VIRAL
Power Apps per App PlanPOWERAPPS_PER_APP
PowerApps per app baseline accessPOWERAPPS_PER_APP_IWTRIAL
Power Apps per appPOWERAPPS_PER_APP_NEW
Power Apps per User PlanPOWERAPPS_PER_USER
Power Apps per User Plan for GovernmentPOWERAPPS_PER_USER_GCC
Power Apps Portals Login Capacity Add-OnPOWERAPPS_PORTALS_LOGIN
Power Apps Portals Login Capacity Add-On for GovernmentPOWERAPPS_PORTALS_LOGIN_GCC
Power Apps Portals Page View Capacity Add-OnPOWERAPPS_PORTALS_PAGEVIEW
Power Apps Portals Page View Capacity Add-On for GovernmentPOWERAPPS_PORTALS_PAGEVIEW_GCC
Power Apps for Sales ProPOWERAPPS_SALES_PRO
Microsoft PowerAppsPOWERAPPSFREE
PAD for WindowsPOWERAUTOMATE_DESKTOP_FOR_WIN
Logic FlowsPOWERFLOWSFREE
Microsoft Power Videos BasicPOWERVIDEOSFREE
Premium Encryption in Office 365PREMIUM_ENCRYPTION
Privacy Management – Subject Rights RequestPRIVACY_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 – RiskPRIVACY_MANGEMENT_RISK
Priva – Risk (Exchange)PRIVACY_MANGEMENT_RISK_EXCHANGE
Project Online Desktop ClientPROJECT_CLIENT_SUBSCRIPTION
Project Online Desktop Client for GovernmentPROJECT_CLIENT_SUBSCRIPTION_GOV
Project Online EssentialsPROJECT_ESSENTIALS
Project Online Essentials for GovernmentPROJECT_ESSENTIALS_GOV
Project for Project OperationsPROJECT_FOR_PROJECT_OPERATIONS
Dynamics 365 Business Central for IWsPROJECT_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 P1PROJECT_P1
Project P3PROJECT_PROFESSIONAL
Project P3 for FacultyPROJECT_PROFESSIONAL_FACULTY
Microsoft PlannerPROJECTWORKMANAGEMENT
Office 365 Planner for GovernmentPROJECTWORKMANAGEMENT_GOV
Microsoft Records ManagementRECORDS_MANAGEMENT
Remote helpREMOTE_HELP
Rights Management AdhocRMS_S_ADHOC
Microsoft Azure Rights Management ServiceRMS_S_BASIC
Azure Information Protection Premium P1RMS_S_ENTERPRISE
Microsoft Azure Active Directory RightsRMS_S_ENTERPRISE)
Azure Rights ManagementRMS_S_ENTERPRISE_GOV
Microsoft Azure Active Directory RightsRMS_S_PREMIUM
Azure Information Protection Premium P1 for GCCRMS_S_PREMIUM_GOV
Azure Information Protection Premium P2RMS_S_PREMIUM2
Azure Information Protection Premium P2 for GCCRMS_S_PREMIUM2_GOV
Office 365 SafeDocsSAFEDOCS
School Data Sync (Plan 1)SCHOOL_DATA_SYNC_P1
School Data Sync (Plan 2)SCHOOL_DATA_SYNC_P2
SharePoint Plan 1GSharePoint Plan 1G
Project Online ServiceSHAREPOINT_PROJECT
Project Online Service for EducationSHAREPOINT_PROJECT_EDU
Project Online Service for GovernmentSHAREPOINT_PROJECT_GOV
SharePoint for DeveloperSHAREPOINT_S_DEVELOPER
SharePoint Online KioskSHAREPOINTDESKLESS
SharePoint KioskGSHAREPOINTDESKLESS_GOV
SharePoint (Plan 2)SHAREPOINTENTERPRISE
SharePoint (Plan 2) for EducationSHAREPOINTENTERPRISE_EDU
SharePoint Plan 2GSHAREPOINTENTERPRISE_GOV
SharePoint Plan 1SHAREPOINTENTERPRISE_MIDMARKET
SharePoint LiteSHAREPOINTLITE
SharePoint Multi-GeoSHAREPOINTONLINE_MULTIGEO
SharePoint StandardSHAREPOINTSTANDARD
SharePoint (Plan 1) for EducationSHAREPOINTSTANDARD_EDU
Office 365 Extra File StorageSHAREPOINTSTORAGE
SharePoint Storage GOVSHAREPOINTSTORAGE_GOV
Office for the webSHAREPOINTWAC
Office Online for DeveloperSHAREPOINTWAC_DEVELOPER
Office for the Web for EducationSHAREPOINTWAC_EDU
Office for the Web for GovernmentSHAREPOINTWAC_GOV
Dynamics 365 AI for Market Insights – FreeSOCIAL_ENGAGEMENT_APP_USER
App ConnectSPZA
Microsoft Power BI Information Services Plan 1SQL_IS_SSIM
Microsoft Stream for Office 365 E1STREAM_O365_E1
Microsoft Stream for O365 for Government (E1)STREAM_O365_E1_GOV
Microsoft Stream for Office 365 E3STREAM_O365_E3
Microsoft Stream for O365 for Government (E3)STREAM_O365_E3_GOV
Microsoft Stream for Office 365 E5STREAM_O365_E5
Stream for Office 365 for Government (E5)STREAM_O365_E5_GOV
Microsoft Stream for O365 K SKUSTREAM_O365_K
Microsoft Stream for O365 for Government (F1)STREAM_O365_K_GOV
Stream for Office 365STREAM_O365_SMB
Microsoft Stream Plan 2STREAM_P2
Microsoft Stream Storage Add-OnSTREAM_STORAGE
SwaySWAY
Microsoft 365 Advanced CommunicationsTEAMS_ADVCOMMS
Microsoft Teams for DOD (AR)TEAMS_AR_DOD
Microsoft Teams for GCCHigh (AR)TEAMS_AR_GCCHIGH
Microsoft Teams (Free)TEAMS_FREE
Teams Free ServiceTEAMS_FREE_SERVICE
Microsoft Teams for GovernmentTEAMS_GOV
Teams Room StandardTeams_Room_Standard
Microsoft TeamsTEAMS1
Microsoft Teams EssentialsTeamsEss
Teams Multi-GeoTEAMSMULTIGEO
Microsoft Teams Premium PersonalizedTEAMSPRO_CUST
Microsoft Teams Premium IntelligentTEAMSPRO_MGMT
Microsoft Teams Premium SecureTEAMSPRO_PROTECTION
Microsoft Teams Premium Virtual AppointmentTEAMSPRO_VIRTUALAPPT
Microsoft Teams Premium WebinarTEAMSPRO_WEBINAR
Microsoft Defender for Office 365 (Plan 2)THREAT_INTELLIGENCE
Microsoft Defender for Office 365 (Plan 2) for GovernmentTHREAT_INTELLIGENCE_GOV
Microsoft Defender Vulnerability ManagementTVM_PREMIUM_1
Universal PrintUNIVERSAL_PRINT_01
Universal Print Without SeedingUNIVERSAL_PRINT_NO_SEEDING
Virtual Agent BaseVIRTUAL_AGENT_BASE
Virtual AgentVIRTUAL_AGENT_USL
Windows 10/11 EnterpriseVirtualization Rights for Windows 10 (E3/E5+VDA)
Visio Desktop AppVISIO_CLIENT_SUBSCRIPTION
Visio Desktop App for GovernmentVISIO_CLIENT_SUBSCRIPTION_GOV
Visio web appVISIOONLINE
Visio Web App for GovernmentVISIOONLINE_GOV
Viva GoalsViva_Goals_Premium
Viva LearningVIVA_LEARNING_PREMIUM
Viva Learning SeededVIVA_LEARNING_SEEDED
Viva Engage Communities and CommunicationsVIVAENGAGE_COMMUNITIES_AND_COMMUNICATIONS
Viva Engage CoreVIVAENGAGE_CORE
Viva Engage KnowledgeVIVAENGAGE_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 BusinessWINBIZ
Microsoft Defender for EndpointWINDEFATP
Windows AutopatchWindows Autopatch
Windows Store for Business EDU Store facultyWindows Store for Business EDU Store_faculty
Windows AutopatchWindows_Autopatch
Windows Store ServiceWINDOWS_STORE
Windows Update for Business Deployment ServiceWINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE
Microsoft Workplace AnalyticsWORKPLACE_ANALYTICS
Microsoft Viva Insights BackendWORKPLACE_ANALYTICS_INSIGHTS_BACKEND
Microsoft Viva InsightsWORKPLACE_ANALYTICS_INSIGHTS_USER
Yammer for AcademicYAMMER_EDU
Yammer EnterpriseYAMMER_ENTERPRISE
Yammer MidsizeYAMMER_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!