This post will show you how to use 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 lots of money for your organization.
To get an overview of license consumption in your organization PowerShell is the preferred tool.
Office 365 License Management From AD
To manage license assignments for individual users, you should use Easy365Manager.
Easy365Manager is a snap-in for Active Directory Users & Computers that lets you manage Office 365 licenses and mailboxes directly in user properties in Active Directory:
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 uninstall your on-premises Exchange server.
Easy365Manager has a lot of features that make your admin life much easier. Get an overview 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 the Office 365 Azure AD as this is where the information is stored:
Connect-MsolService -Crendential $Credential
(this command assumes you have already installed the MSOnline PowerShell module)
List All Licensing Plans Using Get-MsolAccountSku
Once connected, you can list all your licensing plans using the following command:
Get-MsolAccountSku | ft SkuPartNumber,ActiveUnits,ConsumedUnits
This will generate output similar to this:
SkuPartNumber ActiveUnits ConsumedUnits ------------ ----------- ------------- ENTERPRISEPREMIUM 300 287 POWER_BI_PRO 150 29 ENTERPRISEPACK 400 376 FLOW_FREE 10000 92 EXCHANGESTANDARD 50 25 POWERFLOW_P2 2 2 SMB_APPS 200 0 AX7_USER_TRIAL 10000 0 Dynamics_365_for_Operations 200 0 DYN365_ENTERPRISE_PLAN2 50 2 PROJECTPROFESSIONAL 50 30 EXCHANGEENTERPRISE 80 50 CRMSTORAGE 75 0 DYN365_ENTERPRISE_SALES 100 92 STANDARDPACK 80 65
The above output shows you the name and the active (available) units and consumed units for each licensing plan.
List All Service Plans Using Get-MsolAccountSku
To list all service plans included in a specific licensing plan, use the following command:
Get-MsolAccountSku | Where-Object {$_.SkuPartNumber -eq “ENTERPRISEPACK”} | ForEach-Object {$_.ServiceStatus}
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-MsolUser
To list all licensing plans assigned to a single account, use the following command:
get-msoluser -UserPrincipalName nbo@skrubbeltrang.com | select -ExpandProperty licenses | ft AccountSkuId
This generates output like this:
AccountSkuId ------------ msonline-account:VISIOCLIENT msonline-account:MICROSOFT_BUSINESS_CENTER msonline-account:PROJECTPROFESSIONAL msonline-account:ENTERPRISEPREMIUM
As you can see in this output, four licensing plans are assigned to this user.
List All Users Using a Licensing Plan Using Get-MsolUser
To list all users using (consuming) a specific licensing plan, use the following command:
Get-MsolUser -All | Where-Object {($_.licenses).AccountSkuId -match "ENTERPRISEPREMIUM"} | ft
This will generate output similar to this:
UserPrincipalName DisplayName isLicensed ----------------- ----------- ---------- HCO@skrubbeltrang.com Hans Christian Orsted True NBO@skrubbeltrang.com Niels Bohr True TBR@skrubbeltrang.com Tycho Brahe True
Assigning and Disabling Service Plans Using Set-MsolUserLicense
In some cases you don’t want to assign all services in a licensing plan to a given user. Use the New-MsolLicenseOptions command to filter out certain services in a licensing plan for a given user.
E.g. to disable Office Online and Sharepoint Online services from the licensing plan ENTERPRISEPACK on user tbr@skrubbeltrang.com use the following command:
$LO = New-MsolLicenseOptions -AccountSkuId "skrubbeltrang:ENTERPRISEPACK" -DisabledPlans "SHAREPOINTWAC", "SHAREPOINTENTERPRISE"
Set-MsolUserLicense -UserPrincipalName tbr@skrubbeltrang.com -LicenseOptions $LO
How to Save Money on Office 365 Licensing
You should have a process that continuously makes sure your organization is not over-licensed. It’s not just a matter of doing a one-time survey – you should perform it regularly.
Also, you need to make sure that existing processes take Office 365 licensing into account. E.g., your user life cycle management procedures should be freeing up user licenses whenever users leave the company.
Let’s try to identify 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 have a look at the naming convention on Office 365 licensing.
In daily speech, we refer to Office 365 licensing plans using their official names, e.g., Office 365 Enterprise E3, Exchange Online (Plan 2), Office 365 Business, etc. Unfortunately, these names are not used in Office 365 Azure AD, so we need to translate them manually.
E.g., to find all users assigned with Office 365 Enterprise E3, we need to look for “ENTERPRISEPACK”. To find users assigned with Exchange Online (Plan 2), we need to look for “EXCHANGEENTERPRISE”, 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
Dynamics 365 Regulatory Service – Enterprise Edition Trial | DYN365_REGULATORY_SERVICE |
---|---|
Office 365 A1 For Students | STANDARDWOFFPACK_STUDENT |
Project Plan 1 | PROJECT_P1 |
Project Plan 1 (For Department) | PROJECT_PLAN1_DEPT |
Microsoft Power Apps Plan 2 (Qualified Offer) | POWERFLOW_P2 |
Dynamics 365 Customer Service Professional | DYN365_CUSTOMER_SERVICE_PRO |
Dynamics 365 Customer Engagement Plan | DYN365_ENTERPRISE_PLAN1 |
Dynamics 365 For Customer Service Enterprise Edition | DYN365_ENTERPRISE_CUSTOMER_SERVICE |
Dynamics 365 For Sales And Customer Service Enterprise Edition | DYN365_ENTERPRISE_SALES_CUSTOMERSERVICE |
Dynamics 365 For Sales Enterprise Edition | DYN365_ENTERPRISE_SALES |
Microsoft 365 A3 For Faculty | M365EDU_A3_FACULTY |
Microsoft 365 Business Standard | O365_BUSINESS_PREMIUM |
Microsoft 365 E3 | SPE_E3 |
Microsoft 365 E3 – Unattended License | SPE_E3_RPA1 |
Office 365 A3 For Faculty | ENTERPRISEPACKPLUS_FACULTY |
Office 365 A3 For Students | ENTERPRISEPACKPLUS_STUDENT |
Office 365 E3 | ENTERPRISEPACK |
Dynamics 365 Talent: Onboard | DYNAMICS_365_ONBOARDING_SKU |
Dynamics 365 P1 Trial For Information Workers | DYN365_ENTERPRISE_P1_IW |
Microsoft 365 G3 Gcc | M365_G3_GOV |
Office 365 G3 Gcc | ENTERPRISEPACK_GOV |
Microsoft 365 Phone System – Virtual User For Gcc | PHONESYSTEM_VIRTUALUSER_GOV |
Dynamics 365 Sales Professional Attach To Qualifying Dynamics 365 Base Offer | D365_SALES_PRO_ATTACH |
Microsoft Teams Exploratory | TEAMS_EXPLORATORY |
Microsoft Teams Commercial Cloud | TEAMS_COMMERCIAL_TRIAL |
Microsoft 365 A5 For Faculty | M365EDU_A5_FACULTY |
Microsoft 365 A5 For Students | M365EDU_A5_STUDENT |
Microsoft 365 E5 | SPE_E5 |
Microsoft 365 E5 Developer (Without Windows And Audio Conferencing) | DEVELOPERPACK_E5 |
Microsoft 365 E5 Without Audio Conferencing | SPE_E5_NOPSTNCONF |
Office 365 A5 For Faculty | ENTERPRISEPREMIUM_FACULTY |
Office 365 A5 For Students | ENTERPRISEPREMIUM_STUDENT |
Office 365 E5 | ENTERPRISEPREMIUM |
Office 365 E5 Without Audio Conferencing | ENTERPRISEPREMIUM_NOPSTNCONF |
Dynamics 365 Remote Assist | MICROSOFT_REMOTE_ASSIST |
Dynamics 365 Remote Assist Hololens | MICROSOFT_REMOTE_ASSIST_HOLOLENS |
Microsoft 365 A5 For Faculty | M365EDU_A5_FACULTY |
Microsoft 365 A5 For Students | M365EDU_A5_STUDENT |
Microsoft 365 A5 For Students Use Benefit | M365EDU_A5_STUUSEBNFT |
Microsoft 365 A5 Without Audio Conferencing For Students Use Benefit | M365EDU_A5_NOPSTNCONF_STUUSEBNFT |
Microsoft 365 E5 | SPE_E5 |
Microsoft 365 E5 Without Audio Conferencing | SPE_E5_NOPSTNCONF |
Office 365 A5 For Faculty | ENTERPRISEPREMIUM_FACULTY |
Office 365 A5 For Students | ENTERPRISEPREMIUM_STUDENT |
Office 365 E5 | ENTERPRISEPREMIUM |
Microsoft 365 Apps For Business | O365_BUSINESS |
Microsoft 365 Apps For Business | SMB_BUSINESS |
Microsoft 365 Business Standard | O365_BUSINESS_PREMIUM |
Microsoft 365 Business Standard – Prepaid Legacy | SMB_BUSINESS_PREMIUM |
Microsoft 365 Business Premium | SPB |
Dynamics 365 Customer Engagement Plan | DYN365_ENTERPRISE_PLAN1 |
Power Virtual Agent | VIRTUAL_AGENT_BASE |
Microsoft 365 G3 Gcc | M365_G3_GOV |
Office 365 G3 Gcc | ENTERPRISEPACK_GOV |
Office 365 A1 For Faculty | STANDARDWOFFPACK_FACULTY |
Office 365 A1 Plus For Faculty | STANDARDWOFFPACK_IW_FACULTY |
Office 365 A1 For Students | STANDARDWOFFPACK_STUDENT |
Office 365 A1 Plus For Students | STANDARDWOFFPACK_IW_STUDENT |
Dynamics 365 Customer Engagement Plan | DYN365_ENTERPRISE_PLAN1 |
Dynamics 365 Unf Ops Plan Ent Edition | Dynamics_365_for_Operations |
Dynamics 365 Guides | GUIDES_USER |
Powerapps And Logic Flows | POWERAPPS_INDIVIDUAL_USER |
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 |
App Connect Iw | SPZA_IW |
Power Automate Unattended Rpa Add-On | POWERAUTOMATE_UNATTENDED_RPA |
Office 365 G5 Gcc | ENTERPRISEPREMIUM_GOV |
Power Apps Portals Login Capacity Add-On Tier 2 (10 Unit Min) For Government | POWERAPPS_PORTALS_LOGIN_T2_GCC |
Microsoft 365 Business Basic | O365_BUSINESS_ESSENTIALS |
Microsoft 365 Business Basic | SMB_BUSINESS_ESSENTIALS |
Microsoft 365 Business Standard | O365_BUSINESS_PREMIUM |
Microsoft 365 Business Standard – Prepaid Legacy | SMB_BUSINESS_PREMIUM |
Microsoft 365 Business Premium | SPB |
Microsoft Teams Exploratory | TEAMS_EXPLORATORY |
Microsoft Teams Trial | MS_TEAMS_IW |
Microsoft Teams Commercial Cloud | TEAMS_COMMERCIAL_TRIAL |
Office 365 E1 | STANDARDPACK |
Office 365 E2 | STANDARDWOFFPACK |
Common Area Phone | MCOCAP |
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 For Students | M365EDU_A5_STUDENT |
Microsoft 365 A5 For Students Use Benefit | M365EDU_A5_STUUSEBNFT |
Microsoft 365 A5 Without Audio Conferencing For Students Use Benefit | M365EDU_A5_NOPSTNCONF_STUUSEBNFT |
Microsoft 365 Business Basic | O365_BUSINESS_ESSENTIALS |
Microsoft 365 Business Basic | SMB_BUSINESS_ESSENTIALS |
Microsoft 365 Business Standard | O365_BUSINESS_PREMIUM |
Microsoft 365 Business Standard – Prepaid Legacy | SMB_BUSINESS_PREMIUM |
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 Developer (Without Windows And Audio Conferencing) | DEVELOPERPACK_E5 |
Microsoft 365 E5 Without Audio Conferencing | SPE_E5_NOPSTNCONF |
Microsoft Teams Rooms Standard | MEETING_ROOM |
Microsoft Teams Rooms Standard Without Audio Conferencing | MEETING_ROOM_NOAUDIOCONF |
Office 365 A1 For Faculty | STANDARDWOFFPACK_FACULTY |
Office 365 A1 Plus For Faculty | STANDARDWOFFPACK_IW_FACULTY |
Office 365 A1 For Students | STANDARDWOFFPACK_STUDENT |
Office 365 A1 Plus For Students | STANDARDWOFFPACK_IW_STUDENT |
Office 365 A3 For Faculty | ENTERPRISEPACKPLUS_FACULTY |
Office 365 A3 For Students | ENTERPRISEPACKPLUS_STUDENT |
Office 365 A5 For Faculty | ENTERPRISEPREMIUM_FACULTY |
Office 365 A5 For Students | ENTERPRISEPREMIUM_STUDENT |
Office 365 E1 | STANDARDPACK |
Office 365 E2 | STANDARDWOFFPACK |
Office 365 E3 | ENTERPRISEPACK |
Office 365 E3 Developer | DEVELOPERPACK |
Office 365 E3_Usgov_Dod | ENTERPRISEPACK_USGOV_DOD |
Office 365 E3_Usgov_Gcchigh | ENTERPRISEPACK_USGOV_GCCHIGH |
Office 365 E4 | ENTERPRISEWITHSCAL |
Office 365 E5 | ENTERPRISEPREMIUM |
Office 365 E5 Without Audio Conferencing | ENTERPRISEPREMIUM_NOPSTNCONF |
Skype For Business Online (Plan 2) | MCOSTANDARD |
Teams Rooms Premium | MTR_PREM |
Exchange Online Essentials | EXCHANGE_S_ESSENTIALS |
Ai Builder Capacity Add-On | CDSAICAPACITY |
App Connect Iw | SPZA_IW |
Azure Active Directory Premium P1 | AAD_PREMIUM |
Azure Active Directory Premium P2 | AAD_PREMIUM_P2 |
Common Data Service Database Capacity | CDS_DB_CAPACITY |
Common Data Service Log Capacity | CDS_LOG_CAPACITY |
Dynamics 365 – Additional Database Storage (Qualified Offer) | CRMSTORAGE |
Dynamics 365 – Additional Production Instance (Qualified Offer) | CRMINSTANCE |
Dynamics 365 – Additional Non-Production Instance (Qualified Offer) | CRMTESTINSTANCE |
Dynamics 365 Ai For Market Insights (Preview) | SOCIAL_ENGAGEMENT_APP_USER |
Dynamics 365 Asset Management Addl Assets | DYN365_ASSETMANAGEMENT |
Dynamics 365 Business Central Database Capacity | DYN365_BUSCENTRAL_DB_CAPACITY |
Dynamics 365 Business Central Essentials | DYN365_BUSCENTRAL_ESSENTIAL |
Dynamics 365 Business Central External Accountant | DYN365_FINANCIALS_ACCOUNTANT_SKU |
Dynamics 365 Business Central For Iws | PROJECT_MADEIRA_PREVIEW_IW_SKU |
Dynamics 365 Business Central Premium | DYN365_BUSCENTRAL_PREMIUM |
Dynamics 365 Customer Engagement Plan | DYN365_ENTERPRISE_PLAN1 |
Dynamics 365 Customer Service Enterprise Viral Trial | Dynamics_365_Customer_Service_Enterprise_viral_trial |
Dynamics 365 Customer Voice Trial | FORMS_PRO |
Dynamics 365 Customer Service Professional | DYN365_CUSTOMER_SERVICE_PRO |
Dynamics 365 Customer Voice Additional Responses | Forms_Pro_AddOn |
Dynamics 365 Customer Voice Additional Responses | DYN365_CUSTOMER_VOICE_ADDON |
Dynamics 365 Enterprise Edition – Additional Portal (Qualified Offer) | CRM_ONLINE_PORTAL |
Dynamics 365 Field Service Viral Trial | Dynamics_365_Field_Service_Enterprise_viral_trial |
Dynamics 365 Finance | DYN365_FINANCE |
Dynamics 365 For Customer Service Enterprise Edition | DYN365_ENTERPRISE_CUSTOMER_SERVICE |
Dynamics 365 Marketing Business Edition | DYN365_BUSINESS_MARKETING |
Dynamics 365 Sales Premium Viral Trial | Dynamics_365_Sales_Premium_Viral_Trial |
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 Supply Chain Management | DYN365_SCM |
Dynamics 365 For Talent | SKU_Dynamics_365_for_HCM_Trial |
Dynamics 365 Talent: Attract | Dynamics_365_Hiring_SKU |
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 P1 Trial For Information Workers | DYN365_ENTERPRISE_P1_IW |
Dynamics 365 Sales Enterprise Attach To Qualifying Dynamics 365 Base Offer | D365_SALES_ENT_ATTACH |
Dynamics 365 Talent: Onboard | DYNAMICS_365_ONBOARDING_SKU |
Dynamics 365 Team Members | DYN365_TEAM_MEMBERS |
Enterprise Mobility + Security E3 | EMS |
Enterprise Mobility + Security E5 | EMSPREMIUM |
Microsoft Dynamics Ax7 User Trial | AX7_USER_TRIAL |
Microsoft Azure Multi-Factor Authentication | MFA_STANDALONE |
Microsoft 365 Apps For Faculty | OFFICESUBSCRIPTION_FACULTY |
Microsoft 365 Business Premium | SPB |
Microsoft 365 F1 | M365_F1 |
Microsoft Flow Free | FLOW_FREE |
Microsoft Cloud App Security | ADALLOM_STANDALONE |
Microsoft Defender For Endpoint | WIN_DEF_ATP |
Microsoft Defender For Endpoint Server | MDATP_Server |
Microsoft Dynamics Crm Online Basic | CRMPLAN2 |
Microsoft Defender For Identity | ATA |
Microsoft Intune Device | INTUNE_A_D |
Microsoft Power Apps For Developer | POWERAPPS_DEV |
Microsoft Power Apps Plan 2 Trial | POWERAPPS_VIRAL |
Microsoft Power Automate Plan 2 | FLOW_P2 |
Microsoft Intune Smb | INTUNE_SMB |
Microsoft Power Apps Plan 2 (Qualified Offer) | POWERFLOW_P2 |
Microsoft Stream | STREAM |
Microsoft Stream Plan 2 | STREAM_P2 |
Microsoft Stream Storage Add-On (500 Gb) | STREAM_STORAGE |
Microsoft Teams (Free) | TEAMS_FREE |
Microsoft Teams Trial | MS_TEAMS_IW |
Nonprofit Portal | NONPROFIT_PORTAL |
Microsoft Teams Commercial Cloud | TEAMS_COMMERCIAL_TRIAL |
Office 365 Cloud App Security | ADALLOM_O365 |
Powerapps And Logic Flows | POWERAPPS_INDIVIDUAL_USER |
Power Apps Per App Plan | POWERAPPS_PER_APP |
Power Apps Per User Plan | POWERAPPS_PER_USER |
Power Automate Per Flow Plan | FLOW_BUSINESS_PROCESS |
Power Automate Per User Plan | FLOW_PER_USER |
Power Automate Per User Plan Dept | FLOW_PER_USER_DEPT |
Power Automate Per User With Attended Rpa Plan | POWERAUTOMATE_ATTENDED_RPA |
Power Automate Unattended Rpa Add-On | POWERAUTOMATE_UNATTENDED_RPA |
Power Bi | POWER_BI_INDIVIDUAL_USER |
Power Bi (Free) | POWER_BI_STANDARD |
Power Bi Premium P1 | PBI_PREMIUM_P1_ADDON |
Power Bi Premium Per User | PBI_PREMIUM_PER_USER |
Power Bi Premium Per User Dept | PBI_PREMIUM_PER_USER_DEPT |
Power Bi Pro | POWER_BI_PRO |
Power Bi Pro Ce | POWER_BI_PRO_CE |
Power Bi Pro Dept | POWER_BI_PRO_DEPT |
Project Online Essentials | PROJECTESSENTIALS |
Project Plan 1 | PROJECT_P1 |
Project Plan 1 (For Department) | PROJECT_PLAN1_DEPT |
Project Plan 3 | PROJECTPROFESSIONAL |
Project Plan 3 (For Department) | PROJECT_PLAN3_DEPT |
Rights Management Adhoc | RIGHTSMANAGEMENT_ADHOC |
Rights Management Service Basic Content Protection | RMSBASIC |
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 |
Universal Print | UNIVERSAL_PRINT |
Visio Plan 1 | VISIO_PLAN1_DEPT |
Visio Plan 2 | VISIO_PLAN2_DEPT |
Visio Online Plan 1 | VISIOONLINE_PLAN1 |
Visio Online Plan 2 | VISIOCLIENT |
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_VDA_E3 |
Windows 10 Enterprise E5 | WIN10_VDA_E5 |
Windows 365 Business 2 Vcpu 4 Gb 64 Gb | CPC_B_2C_4RAM_64GB |
Windows 365 Business 4 Vcpu 16 Gb 128 Gb (With Windows Hybrid Benefit) | CPC_B_4C_16RAM_128GB_WHB |
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, 128 Gb (Preview) | CPC_LVL_2 |
Windows 365 Enterprise 4 Vcpu, 16 Gb, 256 Gb (Preview) | CPC_LVL_3 |
Windows Store For Business | WINDOWS_STORE |
Dynamics 365 For Supply Chain Management | DYN365_SCM |
Dynamics 365 Customer Service Professional | DYN365_CUSTOMER_SERVICE_PRO |
Dynamics 365 For Customer Service Enterprise Edition | DYN365_ENTERPRISE_CUSTOMER_SERVICE |
Dynamics 365 For Sales And Customer Service Enterprise Edition | DYN365_ENTERPRISE_SALES_CUSTOMERSERVICE |
Dynamics 365 For Sales Enterprise Edition | DYN365_ENTERPRISE_SALES |
Dynamics 365 For Team Members Enterprise Edition | DYN365_ENTERPRISE_TEAM_MEMBERS |
Dynamics 365 Team Members | DYN365_TEAM_MEMBERS |
Project Online Essentials | PROJECTESSENTIALS |
Project Plan 1 | PROJECT_P1 |
Project Plan 1 (For Department) | PROJECT_PLAN1_DEPT |
Dynamics 365 Guides | GUIDES_USER |
Microsoft 365 Apps For Business | O365_BUSINESS |
Microsoft 365 Apps For Business | SMB_BUSINESS |
Microsoft 365 Apps For Enterprise | OFFICESUBSCRIPTION |
Microsoft 365 Apps For Faculty | OFFICESUBSCRIPTION_FACULTY |
Onedrive For Business (Plan 1) | WACONEDRIVESTANDARD |
Dynamics 365 Customer Engagement Plan | DYN365_ENTERPRISE_PLAN1 |
Enterprise Mobility + Security E5 | EMSPREMIUM |
Enterprise Mobility + Security G5 Gcc | EMSPREMIUM_GOV |
Microsoft 365 A5 For Faculty | M365EDU_A5_FACULTY |
Microsoft 365 A5 For Students | M365EDU_A5_STUDENT |
Microsoft 365 A5 For Students Use Benefit | M365EDU_A5_STUUSEBNFT |
Microsoft 365 A5 Without Audio Conferencing For Students Use Benefit | M365EDU_A5_NOPSTNCONF_STUUSEBNFT |
Microsoft 365 E5 | SPE_E5 |
Microsoft 365 E5 Developer (Without Windows And Audio Conferencing) | DEVELOPERPACK_E5 |
Microsoft 365 E5 Security | IDENTITY_THREAT_PROTECTION |
Microsoft 365 E5 Without Audio Conferencing | SPE_E5_NOPSTNCONF |
Microsoft 365 F5 Security Add-On | SPE_F5_SEC |
Microsoft 365 F5 Security + Compliance Add-On | SPE_F5_SECCOMP |
Microsoft 365 Security And Compliance For Firstline Workers | M365_SECURITY_COMPLIANCE_FOR_FLW |
Microsoft Defender For Identity | ATA |
Office 365 G1 Gcc | STANDARDPACK_GOV |
Microsoft 365 G3 Gcc | M365_G3_GOV |
Office 365 G3 Gcc | ENTERPRISEPACK_GOV |
Office 365 G5 Gcc | ENTERPRISEPREMIUM_GOV |
Project Online Essentials For Gcc | PROJECTESSENTIALS_GOV |
Project Plan 3 For Gcc | PROJECTPROFESSIONAL_GOV |
Project Plan 5 For Gcc | PROJECTPREMIUM_GOV |
Microsoft 365 Apps For Business | O365_BUSINESS |
Microsoft 365 Apps For Business | SMB_BUSINESS |
Microsoft 365 Apps For Enterprise | OFFICESUBSCRIPTION |
Microsoft 365 Business Basic | O365_BUSINESS_ESSENTIALS |
Microsoft 365 Business Basic | SMB_BUSINESS_ESSENTIALS |
Microsoft 365 Business Standard | O365_BUSINESS_PREMIUM |
Microsoft 365 Business Standard – Prepaid Legacy | SMB_BUSINESS_PREMIUM |
Microsoft 365 Business Premium | SPB |
Microsoft Teams Exploratory | TEAMS_EXPLORATORY |
Microsoft Teams Commercial Cloud | TEAMS_COMMERCIAL_TRIAL |
Office 365 E1 | STANDARDPACK |
Office 365 E2 | STANDARDWOFFPACK |
Onedrive For Business (Plan 1) | WACONEDRIVESTANDARD |
Project Online Essentials | PROJECTESSENTIALS |
Project Online Premium Without Project Client | PROJECTONLINE_PLAN_1 |
Project Online With Project For Office 365 | PROJECTONLINE_PLAN_2 |
Microsoft Defender For Endpoint P1 | DEFENDER_ENDPOINT_P1 |
Dynamics 365 Business Central External Accountant | DYN365_FINANCIALS_ACCOUNTANT_SKU |
Exchange Online Archiving For Exchange Online | EXCHANGEARCHIVE_ADDON |
Microsoft 365 Business Premium | SPB |
Microsoft 365 F5 Security + Compliance Add-On | SPE_F5_SECCOMP |
Microsoft 365 Security And Compliance For Firstline Workers | M365_SECURITY_COMPLIANCE_FOR_FLW |
Microsoft Flow Free | FLOW_FREE |
Microsoft Power Apps Plan 2 Trial | POWERAPPS_VIRAL |
Dynamics 365 Customer Voice Trial | FORMS_PRO |
Dynamics 365 Customer Engagement Plan | DYN365_ENTERPRISE_PLAN1 |
Business Apps (Free) | SMB_APPS |
Microsoft 365 A3 For Faculty | M365EDU_A3_FACULTY |
Microsoft 365 A3 For Students | M365EDU_A3_STUDENT |
Microsoft 365 A5 For Faculty | M365EDU_A5_FACULTY |
Microsoft 365 A5 For Students | M365EDU_A5_STUDENT |
Microsoft 365 Business Standard | O365_BUSINESS_PREMIUM |
Microsoft 365 Business Standard – Prepaid Legacy | SMB_BUSINESS_PREMIUM |
Microsoft 365 Business Premium | SPB |
Microsoft 365 E3 | SPE_E3 |
Microsoft 365 E3 – Unattended License | SPE_E3_RPA1 |
Microsoft 365 E5 Developer (Without Windows And Audio Conferencing) | DEVELOPERPACK_E5 |
Microsoft 365 E5 Without Audio Conferencing | SPE_E5_NOPSTNCONF |
Microsoft 365 F3 | SPE_F1 |
Microsoft 365 F1 | M365_F1_COMM |
Microsoft 365 G3 Gcc | M365_G3_GOV |
Office 365 A3 For Faculty | ENTERPRISEPACKPLUS_FACULTY |
Office 365 A3 For Students | ENTERPRISEPACKPLUS_STUDENT |
Office 365 A5 For Faculty | ENTERPRISEPREMIUM_FACULTY |
Office 365 A5 For Students | ENTERPRISEPREMIUM_STUDENT |
Office 365 E3 | ENTERPRISEPACK |
Office 365 E5 | ENTERPRISEPREMIUM |
Office 365 F3 | DESKLESSPACK |
Office 365 G3 Gcc | ENTERPRISEPACK_GOV |
Office 365 G5 Gcc | ENTERPRISEPREMIUM_GOV |
Microsoft 365 F3 Gcc | M365_F1_GOV |
Microsoft 365 G3 Gcc | M365_G3_GOV |
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 For Students | M365EDU_A5_STUDENT |
Microsoft 365 A5 For Students Use Benefit | M365EDU_A5_STUUSEBNFT |
Microsoft 365 A5 Without Audio Conferencing For Students Use Benefit | M365EDU_A5_NOPSTNCONF_STUUSEBNFT |
Office 365 A1 For Faculty | STANDARDWOFFPACK_FACULTY |
Office 365 A1 Plus For Faculty | STANDARDWOFFPACK_IW_FACULTY |
Office 365 A1 For Students | STANDARDWOFFPACK_STUDENT |
Office 365 A1 Plus For Students | STANDARDWOFFPACK_IW_STUDENT |
Office 365 A3 For Faculty | ENTERPRISEPACKPLUS_FACULTY |
Office 365 A3 For Students | ENTERPRISEPACKPLUS_STUDENT |
Office 365 A5 For Faculty | ENTERPRISEPREMIUM_FACULTY |
Office 365 A5 For Students | ENTERPRISEPREMIUM_STUDENT |
Dynamics 365 Enterprise Edition – Additional Portal (Qualified Offer) | CRM_ONLINE_PORTAL |
Windows 365 Business 4 Vcpu 16 Gb 128 Gb (With Windows Hybrid Benefit) | CPC_B_4C_16RAM_128GB_WHB |
Common Data Service Database Capacity For Government | CDS_DB_CAPACITY_GOV |
Dynamics 365 For Team Members Enterprise Edition | DYN365_ENTERPRISE_TEAM_MEMBERS |
Dynamics 365 Team Members | DYN365_TEAM_MEMBERS |
Power Bi (Free) | POWER_BI_STANDARD |
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 For Students | M365EDU_A5_STUDENT |
Microsoft 365 A5 For Students Use Benefit | M365EDU_A5_STUUSEBNFT |
Microsoft 365 A5 Without Audio Conferencing For Students Use Benefit | M365EDU_A5_NOPSTNCONF_STUUSEBNFT |
Office 365 A1 For Faculty | STANDARDWOFFPACK_FACULTY |
Office 365 A1 Plus For Faculty | STANDARDWOFFPACK_IW_FACULTY |
Office 365 A1 For Students | STANDARDWOFFPACK_STUDENT |
Office 365 A1 Plus For Students | STANDARDWOFFPACK_IW_STUDENT |
Office 365 A3 For Faculty | ENTERPRISEPACKPLUS_FACULTY |
Office 365 A3 For Students | ENTERPRISEPACKPLUS_STUDENT |
Office 365 A5 For Faculty | ENTERPRISEPREMIUM_FACULTY |
Office 365 A5 For Students | ENTERPRISEPREMIUM_STUDENT |
Office 365 G5 Gcc | ENTERPRISEPREMIUM_GOV |
Dynamics 365 Field Service Viral Trial | Dynamics_365_Field_Service_Enterprise_viral_trial |
Power Bi | POWER_BI_INDIVIDUAL_USER |
Power Bi For Office 365 Add-On | POWER_BI_ADDON |
Microsoft 365 E3 | SPE_E3 |
Microsoft 365 E3 – Unattended License | SPE_E3_RPA1 |
Microsoft 365 E5 | SPE_E5 |
Microsoft 365 E5 Without Audio Conferencing | SPE_E5_NOPSTNCONF |
Windows 10/11 Enterprise E5 (Original) | WIN_ENT_E5 |
Windows 10 Enterprise E3 | WIN10_PRO_ENT_SUB |
Windows 365 Enterprise 2 Vcpu 4 Gb 64 Gb | CPC_E_2C_4GB_64GB |
Microsoft 365 G3 Gcc | M365_G3_GOV |
Office 365 G3 Gcc | ENTERPRISEPACK_GOV |
Office 365 E4 | ENTERPRISEWITHSCAL |
Microsoft 365 Business Premium | SPB |
Microsoft 365 E3 | SPE_E3 |
Microsoft 365 E3 – Unattended License | SPE_E3_RPA1 |
Office 365 E3 | ENTERPRISEPACK |
Office 365 E4 | ENTERPRISEWITHSCAL |
Microsoft 365 A5 For Faculty | M365EDU_A5_FACULTY |
Microsoft 365 A5 For Students Use Benefit | M365EDU_A5_STUUSEBNFT |
Microsoft 365 A5 Without Audio Conferencing For Students Use Benefit | M365EDU_A5_NOPSTNCONF_STUUSEBNFT |
Microsoft 365 Business Premium | SPB |
Microsoft 365 E5 Developer (Without Windows And Audio Conferencing) | DEVELOPERPACK_E5 |
Microsoft 365 E5 Without Audio Conferencing | SPE_E5_NOPSTNCONF |
Office 365 E5 | ENTERPRISEPREMIUM |
Microsoft 365 F3 Gcc | M365_F1_GOV |
Microsoft 365 E3 | SPE_E3 |
Microsoft Defender For Endpoint P1 | DEFENDER_ENDPOINT_P1 |
Microsoft 365 A3 For Faculty | M365EDU_A3_FACULTY |
Microsoft 365 A3 – Unattended License For Students Use Benefit | M365EDU_A3_STUUSEBNFT_RPA1 |
Microsoft 365 A5 For Faculty | M365EDU_A5_FACULTY |
Microsoft 365 E3 | SPE_E3 |
Microsoft 365 E5 Compliance | INFORMATION_PROTECTION_COMPLIANCE |
Microsoft 365 E5 Without Audio Conferencing | SPE_E5_NOPSTNCONF |
Microsoft 365 G3 Gcc | M365_G3_GOV |
Microsoft 365 Security And Compliance For Firstline Workers | M365_SECURITY_COMPLIANCE_FOR_FLW |
Office 365 Advanced Compliance For Gcc | EQUIVIO_ANALYTICS_GOV |
Office 365 E3 | ENTERPRISEPACK |
Office 365 E5 | ENTERPRISEPREMIUM |
Office 365 G3 Gcc | ENTERPRISEPACK_GOV |
Office 365 G5 Gcc | ENTERPRISEPREMIUM_GOV |
Visio Plan 1 | VISIO_PLAN1_DEPT |
Visio Plan 2 | VISIO_PLAN2_DEPT |
Visio Online Plan 1 | VISIOONLINE_PLAN1 |
Visio Online Plan 2 | VISIOCLIENT |
Microsoft 365 G3 Gcc | M365_G3_GOV |
Office 365 G3 Gcc | ENTERPRISEPACK_GOV |
Powerapps And Logic Flows | POWERAPPS_INDIVIDUAL_USER |
Dynamics 365 Operations – Device | Dynamics_365_for_Operations_Devices |
Windows 10/11 Enterprise E5 (Original) | WIN_ENT_E5 |
Dynamics 365 For Talent | SKU_Dynamics_365_for_HCM_Trial |
Dynamics 365 Talent: Attract | Dynamics_365_Hiring_SKU |
Dynamics 365 Talent: Onboard | DYNAMICS_365_ONBOARDING_SKU |
Dynamics 365 For Sales Enterprise Edition | DYN365_ENTERPRISE_SALES |
Enterprise Mobility + Security E5 | EMSPREMIUM |
Enterprise Mobility + Security G5 Gcc | EMSPREMIUM_GOV |
Microsoft 365 A5 For Faculty | M365EDU_A5_FACULTY |
Microsoft 365 A5 For Students | M365EDU_A5_STUDENT |
Microsoft 365 A5 For Students Use Benefit | M365EDU_A5_STUUSEBNFT |
Microsoft 365 A5 Without Audio Conferencing For Students Use Benefit | M365EDU_A5_NOPSTNCONF_STUUSEBNFT |
Microsoft 365 E5 | SPE_E5 |
Microsoft 365 E5 Developer (Without Windows And Audio Conferencing) | DEVELOPERPACK_E5 |
Microsoft 365 E5 Compliance | INFORMATION_PROTECTION_COMPLIANCE |
Microsoft 365 E5 Security | IDENTITY_THREAT_PROTECTION |
Microsoft 365 E5 Without Audio Conferencing | SPE_E5_NOPSTNCONF |
Microsoft 365 F5 Security Add-On | SPE_F5_SEC |
Microsoft 365 F5 Security + Compliance Add-On | SPE_F5_SECCOMP |
Microsoft 365 Security And Compliance For Firstline Workers | M365_SECURITY_COMPLIANCE_FOR_FLW |
Microsoft Cloud App Security | ADALLOM_STANDALONE |
Microsoft 365 A5 For Faculty | M365EDU_A5_FACULTY |
Microsoft 365 A5 For Students | M365EDU_A5_STUDENT |
Microsoft 365 E5 Developer (Without Windows And Audio Conferencing) | DEVELOPERPACK_E5 |
Microsoft 365 E5 Compliance | INFORMATION_PROTECTION_COMPLIANCE |
Microsoft 365 E5 Without Audio Conferencing | SPE_E5_NOPSTNCONF |
Microsoft 365 F5 Security + Compliance Add-On | SPE_F5_SECCOMP |
Microsoft 365 Security And Compliance For Firstline Workers | M365_SECURITY_COMPLIANCE_FOR_FLW |
Office 365 A5 For Faculty | ENTERPRISEPREMIUM_FACULTY |
Office 365 A5 For Students | ENTERPRISEPREMIUM_STUDENT |
Office 365 Advanced Compliance For Gcc | EQUIVIO_ANALYTICS_GOV |
Office 365 E5 | ENTERPRISEPREMIUM |
Office 365 G5 Gcc | ENTERPRISEPREMIUM_GOV |
Dynamics 365 For Talent | SKU_Dynamics_365_for_HCM_Trial |
Dynamics 365 Talent: Onboard | DYNAMICS_365_ONBOARDING_SKU |
Dynamics 365 Unf Ops Plan Ent Edition | Dynamics_365_for_Operations |
Common Area Phone For Gcc | MCOCAP_GOV |
Microsoft 365 F3 Gcc | M365_F1_GOV |
Microsoft 365 G3 Gcc | M365_G3_GOV |
Office 365 G1 Gcc | STANDARDPACK_GOV |
Office 365 G3 Gcc | ENTERPRISEPACK_GOV |
Office 365 G5 Gcc | ENTERPRISEPREMIUM_GOV |
Sharepoint Syntex | Intelligent_Content_Services |
Microsoft 365 A3 For Faculty | M365EDU_A3_FACULTY |
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 Business Standard | O365_BUSINESS_PREMIUM |
Microsoft 365 E3 | SPE_E3 |
Microsoft 365 E3 – Unattended License | SPE_E3_RPA1 |
Office 365 A3 For Faculty | ENTERPRISEPACKPLUS_FACULTY |
Office 365 A3 For Students | ENTERPRISEPACKPLUS_STUDENT |
Office 365 E3 | ENTERPRISEPACK |
Microsoft 365 Apps For Faculty | OFFICESUBSCRIPTION_FACULTY |
Microsoft 365 Business Standard | O365_BUSINESS_PREMIUM |
Office 365 F3 | DESKLESSPACK |
Rights Management Service Basic Content Protection | RMSBASIC |
Exchange Online Protection | EOP_ENTERPRISE |
Dynamics 365 Ai For Market Insights (Preview) | SOCIAL_ENGAGEMENT_APP_USER |
Microsoft 365 A3 For Faculty | M365EDU_A3_FACULTY |
Microsoft 365 A3 For Students | M365EDU_A3_STUDENT |
Microsoft 365 Business Standard | O365_BUSINESS_PREMIUM |
Microsoft 365 Business Premium | SPB |
Microsoft 365 E3 | SPE_E3 |
Microsoft 365 E3 – Unattended License | SPE_E3_RPA1 |
Microsoft 365 E5 | SPE_E5 |
Microsoft 365 E5 Without Audio Conferencing | SPE_E5_NOPSTNCONF |
Microsoft Teams Exploratory | TEAMS_EXPLORATORY |
Office 365 A3 For Faculty | ENTERPRISEPACKPLUS_FACULTY |
Office 365 A3 For Students | ENTERPRISEPACKPLUS_STUDENT |
Office 365 E3 | ENTERPRISEPACK |
Office 365 E5 | ENTERPRISEPREMIUM |
Dynamics 365 Customer Service Enterprise Viral Trial | Dynamics_365_Customer_Service_Enterprise_viral_trial |
Microsoft Dynamics Crm Online | CRMSTANDARD |
Microsoft 365 A5 For Faculty | M365EDU_A5_FACULTY |
Microsoft 365 A5 For Students | M365EDU_A5_STUDENT |
Microsoft 365 E5 | SPE_E5 |
Microsoft 365 E5 Developer (Without Windows And Audio Conferencing) | DEVELOPERPACK_E5 |
Microsoft 365 E5 Without Audio Conferencing | SPE_E5_NOPSTNCONF |
Office 365 A5 For Faculty | ENTERPRISEPREMIUM_FACULTY |
Office 365 A5 For Students | ENTERPRISEPREMIUM_STUDENT |
Office 365 E5 | ENTERPRISEPREMIUM |
Office 365 E5 Without Audio Conferencing | ENTERPRISEPREMIUM_NOPSTNCONF |
Powerapps Per App Baseline Access | POWERAPPS_PER_APP_IW |
Power Apps Portals Page View Capacity Add-On For Government | POWERAPPS_PORTALS_PAGEVIEW_GCC |
Common Data Service Database Capacity | CDS_DB_CAPACITY |
Dynamics 365 Customer Voice Trial | FORMS_PRO |
Microsoft 365 F3 | SPE_F1 |
Microsoft 365 F3 Gcc | M365_F1_GOV |
Microsoft Teams (Free) | TEAMS_FREE |
Office 365 F3 | DESKLESSPACK |
Power Apps Per User Plan For Government | POWERAPPS_PER_USER_GCC |
Power Automate Per User Plan For Government | FLOW_PER_USER_GCC |
Power Automate Per User With Attended Rpa Plan | POWERAUTOMATE_ATTENDED_RPA |
Dynamics 365 Marketing Business Edition | DYN365_BUSINESS_MARKETING |
Business Apps (Free) | SMB_APPS |
Microsoft 365 A1 | M365EDU_A1 |
Dynamics 365 Sales Enterprise Attach To Qualifying Dynamics 365 Base Offer | D365_SALES_ENT_ATTACH |
Dynamics 365 Customer Service Enterprise Viral Trial | Dynamics_365_Customer_Service_Enterprise_viral_trial |
Microsoft 365 Business Standard | O365_BUSINESS_PREMIUM |
Microsoft 365 Domestic Calling Plan For Gcc | MCOPSTN_1_GOV |
Dynamics 365 Customer Voice Usl | Forms_Pro_USL |
Power Automate Per User With Attended Rpa Plan | POWERAUTOMATE_ATTENDED_RPA |
Dynamics 365 Customer Service Enterprise Viral Trial | Dynamics_365_Customer_Service_Enterprise_viral_trial |
Microsoft 365 Audio Conferencing | MCOMEETADV |
Microsoft 365 A5 For Faculty | M365EDU_A5_FACULTY |
Microsoft 365 A5 For Students | M365EDU_A5_STUDENT |
Microsoft 365 Business Voice | BUSINESS_VOICE_MED2 |
Microsoft 365 Business Voice (Us) | BUSINESS_VOICE_MED2_TELCO |
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 E5 | SPE_E5 |
Microsoft Teams Rooms Standard | MEETING_ROOM |
Office 365 A5 For Faculty | ENTERPRISEPREMIUM_FACULTY |
Office 365 A5 For Students | ENTERPRISEPREMIUM_STUDENT |
Office 365 E5 | ENTERPRISEPREMIUM |
Teams Rooms Premium | MTR_PREM |
Microsoft Dynamics Crm Online | CRMSTANDARD |
Windows 365 Enterprise 2 Vcpu, 8 Gb, 128 Gb | CPC_E_2C_8GB_128GB |
Windows 365 Enterprise 2 Vcpu, 8 Gb, 128 Gb (Preview) | CPC_LVL_2 |
Dynamics 365 Business Central For Iws | PROJECT_MADEIRA_PREVIEW_IW_SKU |
Microsoft 365 A5 For Faculty | M365EDU_A5_FACULTY |
Microsoft 365 A5 For Students | M365EDU_A5_STUDENT |
Microsoft 365 E5 | SPE_E5 |
Microsoft 365 E5 Developer (Without Windows And Audio Conferencing) | DEVELOPERPACK_E5 |
Microsoft 365 E5 Without Audio Conferencing | SPE_E5_NOPSTNCONF |
Office 365 A5 For Faculty | ENTERPRISEPREMIUM_FACULTY |
Office 365 A5 For Students | ENTERPRISEPREMIUM_STUDENT |
Office 365 E3 Developer | DEVELOPERPACK |
Office 365 E5 | ENTERPRISEPREMIUM |
Office 365 E5 Without Audio Conferencing | ENTERPRISEPREMIUM_NOPSTNCONF |
Microsoft 365 F1 | M365_F1 |
Microsoft 365 F3 | SPE_F1 |
Microsoft 365 F1 | M365_F1_COMM |
Office 365 F3 | DESKLESSPACK |
Dynamics 365 Team Members | DYN365_TEAM_MEMBERS |
Office 365 A1 For Faculty | STANDARDWOFFPACK_FACULTY |
Office 365 A1 Plus For Faculty | STANDARDWOFFPACK_IW_FACULTY |
Office 365 A1 For Students | STANDARDWOFFPACK_STUDENT |
Office 365 A1 Plus For Students | STANDARDWOFFPACK_IW_STUDENT |
Azure Active Directory Premium P1 | AAD_PREMIUM |
Azure Active Directory Premium P2 | AAD_PREMIUM_P2 |
Enterprise Mobility + Security E3 | EMS |
Enterprise Mobility + Security E5 | EMSPREMIUM |
Enterprise Mobility + Security G3 Gcc | EMS_GOV |
Enterprise Mobility + Security G5 Gcc | EMSPREMIUM_GOV |
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 For Students | M365EDU_A5_STUDENT |
Microsoft 365 A5 For Students Use Benefit | M365EDU_A5_STUUSEBNFT |
Microsoft 365 A5 Without Audio Conferencing For Students Use Benefit | M365EDU_A5_NOPSTNCONF_STUUSEBNFT |
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 Developer (Without Windows And Audio Conferencing) | DEVELOPERPACK_E5 |
Microsoft 365 E5 Without Audio Conferencing | SPE_E5_NOPSTNCONF |
Microsoft 365 F1 | M365_F1 |
Microsoft 365 F3 | SPE_F1 |
Microsoft 365 F3 Gcc | M365_F1_GOV |
Microsoft 365 F1 | M365_F1_COMM |
Microsoft 365 G3 Gcc | M365_G3_GOV |
Microsoft 365 Business Basic | SMB_BUSINESS_ESSENTIALS |
Microsoft 365 Business Standard – Prepaid Legacy | SMB_BUSINESS_PREMIUM |
Office 365 Midsize Business | MIDSIZEPACK |
Multi-Geo Capabilities In Office 365 | OFFICE365_MULTIGEO |
Microsoft 365 A5 For Faculty | M365EDU_A5_FACULTY |
Microsoft 365 E5 Developer (Without Windows And Audio Conferencing) | DEVELOPERPACK_E5 |
Microsoft 365 E5 Compliance | INFORMATION_PROTECTION_COMPLIANCE |
Microsoft 365 E5 Without Audio Conferencing | SPE_E5_NOPSTNCONF |
Office 365 A5 For Faculty | ENTERPRISEPREMIUM_FACULTY |
Office 365 A5 For Students | ENTERPRISEPREMIUM_STUDENT |
Office 365 E5 | ENTERPRISEPREMIUM |
Microsoft Teams Exploratory | TEAMS_EXPLORATORY |
Microsoft Teams Trial | MS_TEAMS_IW |
Microsoft Teams Commercial Cloud | TEAMS_COMMERCIAL_TRIAL |
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 A5 For Faculty | M365EDU_A5_FACULTY |
Microsoft 365 A5 For Students | M365EDU_A5_STUDENT |
Microsoft 365 A5 For Students Use Benefit | M365EDU_A5_STUUSEBNFT |
Microsoft 365 A5 Without Audio Conferencing For Students Use Benefit | M365EDU_A5_NOPSTNCONF_STUUSEBNFT |
Microsoft 365 Apps For Enterprise | OFFICESUBSCRIPTION |
Microsoft 365 Apps For Faculty | OFFICESUBSCRIPTION_FACULTY |
Microsoft 365 E3 | SPE_E3 |
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 Developer (Without Windows And Audio Conferencing) | DEVELOPERPACK_E5 |
Microsoft 365 E5 Without Audio Conferencing | SPE_E5_NOPSTNCONF |
Office 365 A1 Plus For Faculty | STANDARDWOFFPACK_IW_FACULTY |
Office 365 A1 Plus For Students | STANDARDWOFFPACK_IW_STUDENT |
Office 365 A3 For Faculty | ENTERPRISEPACKPLUS_FACULTY |
Office 365 A3 For Students | ENTERPRISEPACKPLUS_STUDENT |
Office 365 A5 For Faculty | ENTERPRISEPREMIUM_FACULTY |
Office 365 A5 For Students | ENTERPRISEPREMIUM_STUDENT |
Office 365 E3 | ENTERPRISEPACK |
Office 365 E3 Developer | DEVELOPERPACK |
Office 365 E3_Usgov_Dod | ENTERPRISEPACK_USGOV_DOD |
Office 365 E3_Usgov_Gcchigh | ENTERPRISEPACK_USGOV_GCCHIGH |
Office 365 E4 | ENTERPRISEWITHSCAL |
Office 365 E5 | ENTERPRISEPREMIUM |
Office 365 E5 Without Audio Conferencing | ENTERPRISEPREMIUM_NOPSTNCONF |
Office 365 Midsize Business | MIDSIZEPACK |
Dynamics 365 Sales Premium Viral Trial | Dynamics_365_Sales_Premium_Viral_Trial |
Project Plan 3 For Gcc | PROJECTPROFESSIONAL_GOV |
Project Plan 5 For Gcc | PROJECTPREMIUM_GOV |
Microsoft 365 A5 For Faculty | M365EDU_A5_FACULTY |
Microsoft 365 E5 Developer (Without Windows And Audio Conferencing) | DEVELOPERPACK_E5 |
Microsoft 365 E5 Compliance | INFORMATION_PROTECTION_COMPLIANCE |
Microsoft 365 E5 Without Audio Conferencing | SPE_E5_NOPSTNCONF |
Microsoft 365 F5 Security + Compliance Add-On | SPE_F5_SECCOMP |
Office 365 A5 For Faculty | ENTERPRISEPREMIUM_FACULTY |
Office 365 A5 For Students | ENTERPRISEPREMIUM_STUDENT |
Office 365 E5 | ENTERPRISEPREMIUM |
Common Area Phone | MCOCAP |
Microsoft 365 A5 For Faculty | M365EDU_A5_FACULTY |
Microsoft 365 A5 For Students | M365EDU_A5_STUDENT |
Microsoft 365 Business Voice | BUSINESS_VOICE_MED2 |
Microsoft 365 Business Voice (Us) | BUSINESS_VOICE_MED2_TELCO |
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 E5 | SPE_E5 |
Microsoft 365 E5 Developer (Without Windows And Audio Conferencing) | DEVELOPERPACK_E5 |
Microsoft 365 E5 Without Audio Conferencing | SPE_E5_NOPSTNCONF |
Microsoft 365 Phone System | MCOEV |
Microsoft 365 Phone System For Dod | MCOEV_DOD |
Microsoft 365 Phone System For Faculty | MCOEV_FACULTY |
Microsoft 365 Phone System For Gcchigh | MCOEV_GCCHIGH |
Microsoft 365 Phone System For Students | MCOEV_STUDENT |
Microsoft 365 Phone System For Telstra | MCOEV_TELSTRA |
Microsoft 365 Phone System_Usgov_Dod | MCOEV_USGOV_DOD |
Microsoft 365 Phone System_Usgov_Gcchigh | MCOEV_USGOV_GCCHIGH |
Microsoft Teams Rooms Standard | MEETING_ROOM |
Microsoft Teams Rooms Standard Without Audio Conferencing | MEETING_ROOM_NOAUDIOCONF |
Office 365 A5 For Faculty | ENTERPRISEPREMIUM_FACULTY |
Office 365 A5 For Students | ENTERPRISEPREMIUM_STUDENT |
Office 365 E5 | ENTERPRISEPREMIUM |
Office 365 E5 Without Audio Conferencing | ENTERPRISEPREMIUM_NOPSTNCONF |
Teams Phone With Calling Plan | MCOTEAMS_ESSENTIALS |
Teams Rooms Premium | MTR_PREM |
Power Apps Portals Page View Capacity Add-On For Government | POWERAPPS_PORTALS_PAGEVIEW_GCC |
Microsoft Defender For Office 365 (Plan 1) Gcc | ATP_ENTERPRISE_GOV |
Microsoft Defender For Office 365 (Plan 2) Gcc | THREAT_INTELLIGENCE_GOV |
Office 365 G5 Gcc | ENTERPRISEPREMIUM_GOV |
Microsoft 365 F3 Gcc | M365_F1_GOV |
Project Plan 1 | PROJECT_P1 |
Project Plan 1 (For Department) | PROJECT_PLAN1_DEPT |
Microsoft 365 A5 For Faculty | M365EDU_A5_FACULTY |
Microsoft 365 A5 For Students | M365EDU_A5_STUDENT |
Microsoft 365 A5 For Students Use Benefit | M365EDU_A5_STUUSEBNFT |
Microsoft 365 A5 Without Audio Conferencing For Students Use Benefit | M365EDU_A5_NOPSTNCONF_STUUSEBNFT |
Microsoft 365 E5 | SPE_E5 |
Microsoft 365 E5 Developer (Without Windows And Audio Conferencing) | DEVELOPERPACK_E5 |
Microsoft 365 E5 Without Audio Conferencing | SPE_E5_NOPSTNCONF |
Microsoft Teams Rooms Standard | MEETING_ROOM |
Microsoft Teams Rooms Standard Without Audio Conferencing | MEETING_ROOM_NOAUDIOCONF |
Office 365 A5 For Faculty | ENTERPRISEPREMIUM_FACULTY |
Office 365 A5 For Students | ENTERPRISEPREMIUM_STUDENT |
Office 365 E5 | ENTERPRISEPREMIUM |
Teams Rooms Premium | MTR_PREM |
Exchange Online Kiosk | EXCHANGEDESKLESS |
Microsoft 365 F3 | SPE_F1 |
Microsoft 365 F1 | M365_F1_COMM |
Office 365 F3 | DESKLESSPACK |
Dynamics 365 Customer Service Insights Trial | DYN365_AI_SERVICE_INSIGHTS |
Power Virtual Agent | VIRTUAL_AGENT_BASE |
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 For Students | M365EDU_A5_STUDENT |
Microsoft 365 A5 For Students Use Benefit | M365EDU_A5_STUUSEBNFT |
Microsoft 365 A5 Without Audio Conferencing For Students Use Benefit | M365EDU_A5_NOPSTNCONF_STUUSEBNFT |
Microsoft 365 F3 Gcc | M365_F1_GOV |
Office 365 G1 Gcc | STANDARDPACK_GOV |
Microsoft 365 A5 For Faculty | M365EDU_A5_FACULTY |
Microsoft 365 A5 For Students | M365EDU_A5_STUDENT |
Microsoft 365 E5 | SPE_E5 |
Microsoft 365 E5 Developer (Without Windows And Audio Conferencing) | DEVELOPERPACK_E5 |
Microsoft 365 E5 Compliance | INFORMATION_PROTECTION_COMPLIANCE |
Microsoft 365 E5 Without Audio Conferencing | SPE_E5_NOPSTNCONF |
Microsoft 365 F5 Security + Compliance Add-On | SPE_F5_SECCOMP |
Microsoft 365 Security And Compliance For Firstline Workers | M365_SECURITY_COMPLIANCE_FOR_FLW |
Office 365 A5 For Faculty | ENTERPRISEPREMIUM_FACULTY |
Office 365 A5 For Students | ENTERPRISEPREMIUM_STUDENT |
Office 365 Advanced Compliance | EQUIVIO_ANALYTICS |
Office 365 E5 | ENTERPRISEPREMIUM |
Office 365 E5 Without Audio Conferencing | ENTERPRISEPREMIUM_NOPSTNCONF |
Microsoft 365 Business Voice | BUSINESS_VOICE_MED2 |
Microsoft 365 Business Voice (Us) | BUSINESS_VOICE_MED2_TELCO |
Skype For Business Pstn Domestic Calling | MCOPSTN1 |
Teams Phone With Calling Plan | MCOTEAMS_ESSENTIALS |
Dynamics 365 Remote Assist | MICROSOFT_REMOTE_ASSIST |
Dynamics 365 Remote Assist Hololens | MICROSOFT_REMOTE_ASSIST_HOLOLENS |
Microsoft Teams (Free) | TEAMS_FREE |
Microsoft 365 A3 For Faculty | M365EDU_A3_FACULTY |
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 Business Standard | O365_BUSINESS_PREMIUM |
Microsoft 365 E3 | SPE_E3 |
Microsoft 365 E3 – Unattended License | SPE_E3_RPA1 |
Office 365 A3 For Faculty | ENTERPRISEPACKPLUS_FACULTY |
Office 365 A3 For Students | ENTERPRISEPACKPLUS_STUDENT |
Office 365 E3 | ENTERPRISEPACK |
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 For Students | M365EDU_A5_STUDENT |
Microsoft 365 A5 For Students Use Benefit | M365EDU_A5_STUUSEBNFT |
Microsoft 365 A5 Without Audio Conferencing For Students Use Benefit | M365EDU_A5_NOPSTNCONF_STUUSEBNFT |
Office 365 A3 For Faculty | ENTERPRISEPACKPLUS_FACULTY |
Office 365 A3 For Students | ENTERPRISEPACKPLUS_STUDENT |
Office 365 A5 For Faculty | ENTERPRISEPREMIUM_FACULTY |
Office 365 A5 For Students | ENTERPRISEPREMIUM_STUDENT |
Project Plan 3 | PROJECTPROFESSIONAL |
Project Plan 3 (For Department) | PROJECT_PLAN3_DEPT |
Communications Credits | MCOPSTNC |
Microsoft Flow Free | FLOW_FREE |
Microsoft Power Apps Plan 2 Trial | POWERAPPS_VIRAL |
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 For Students | M365EDU_A5_STUDENT |
Microsoft 365 A5 For Students Use Benefit | M365EDU_A5_STUUSEBNFT |
Microsoft 365 A5 Without Audio Conferencing For Students Use Benefit | M365EDU_A5_NOPSTNCONF_STUUSEBNFT |
Microsoft 365 E3 | SPE_E3 |
Microsoft 365 E3 – Unattended License | SPE_E3_RPA1 |
Microsoft 365 E5 | SPE_E5 |
Microsoft 365 E5 Developer (Without Windows And Audio Conferencing) | DEVELOPERPACK_E5 |
Microsoft 365 E5 Without Audio Conferencing | SPE_E5_NOPSTNCONF |
Microsoft 365 G3 Gcc | M365_G3_GOV |
Office 365 A3 For Faculty | ENTERPRISEPACKPLUS_FACULTY |
Office 365 A3 For Students | ENTERPRISEPACKPLUS_STUDENT |
Office 365 A5 For Faculty | ENTERPRISEPREMIUM_FACULTY |
Office 365 A5 For Students | ENTERPRISEPREMIUM_STUDENT |
Office 365 Advanced Compliance For Gcc | EQUIVIO_ANALYTICS_GOV |
Office 365 E3 | ENTERPRISEPACK |
Office 365 E5 | ENTERPRISEPREMIUM |
Office 365 G3 Gcc | ENTERPRISEPACK_GOV |
Office 365 G5 Gcc | ENTERPRISEPREMIUM_GOV |
Office 365 E3 Developer | DEVELOPERPACK |
Dynamics 365 For Team Members Enterprise Edition | DYN365_ENTERPRISE_TEAM_MEMBERS |
Dynamics 365 Team Members | DYN365_TEAM_MEMBERS |
Microsoft 365 A5 For Faculty | M365EDU_A5_FACULTY |
Microsoft 365 E5 Developer (Without Windows And Audio Conferencing) | DEVELOPERPACK_E5 |
Microsoft 365 E5 Without Audio Conferencing | SPE_E5_NOPSTNCONF |
Office 365 E5 | ENTERPRISEPREMIUM |
Microsoft 365 Domestic Calling Plan (120 Minutes) | MCOPSTN_5 |
Skype For Business Pstn Domestic Calling (120 Minutes) | MCOPSTN5 |
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 Sales Premium Viral Trial | Dynamics_365_Sales_Premium_Viral_Trial |
Microsoft 365 Business Standard | O365_BUSINESS_PREMIUM |
Microsoft 365 Business Premium | SPB |
Office 365 A1 For Faculty | STANDARDWOFFPACK_FACULTY |
Office 365 A1 Plus For Faculty | STANDARDWOFFPACK_IW_FACULTY |
Office 365 A1 For Students | STANDARDWOFFPACK_STUDENT |
Office 365 A1 Plus For Students | STANDARDWOFFPACK_IW_STUDENT |
Enterprise Mobility + Security E5 | EMSPREMIUM |
Enterprise Mobility + Security G5 Gcc | EMSPREMIUM_GOV |
Microsoft 365 A5 For Faculty | M365EDU_A5_FACULTY |
Microsoft 365 A5 For Students | M365EDU_A5_STUDENT |
Microsoft 365 E5 | SPE_E5 |
Microsoft 365 E5 Developer (Without Windows And Audio Conferencing) | DEVELOPERPACK_E5 |
Microsoft 365 E5 Compliance | INFORMATION_PROTECTION_COMPLIANCE |
Microsoft 365 E5 Without Audio Conferencing | SPE_E5_NOPSTNCONF |
Microsoft 365 F5 Security + Compliance Add-On | SPE_F5_SECCOMP |
Microsoft 365 Security And Compliance For Firstline Workers | M365_SECURITY_COMPLIANCE_FOR_FLW |
Microsoft Power Automate Plan 2 | FLOW_P2 |
Microsoft Power Apps Plan 2 (Qualified Offer) | POWERFLOW_P2 |
Dynamics 365 Customer Voice Trial | FORMS_PRO |
Dynamics 365 Customer Voice Usl | Forms_Pro_USL |
Common Area Phone | MCOCAP |
Dynamics 365 Remote Assist | MICROSOFT_REMOTE_ASSIST |
Dynamics 365 Remote Assist Hololens | MICROSOFT_REMOTE_ASSIST_HOLOLENS |
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 For Students | M365EDU_A5_STUDENT |
Microsoft 365 A5 For Students Use Benefit | M365EDU_A5_STUUSEBNFT |
Microsoft 365 A5 Without Audio Conferencing For Students Use Benefit | M365EDU_A5_NOPSTNCONF_STUUSEBNFT |
Microsoft 365 Business Basic | O365_BUSINESS_ESSENTIALS |
Microsoft 365 Business Basic | SMB_BUSINESS_ESSENTIALS |
Microsoft 365 Business Standard | O365_BUSINESS_PREMIUM |
Microsoft 365 Business Standard – Prepaid Legacy | SMB_BUSINESS_PREMIUM |
Microsoft 365 Business Premium | SPB |
Microsoft 365 E3 | SPE_E3 |
Microsoft 365 E3 – Unattended License | SPE_E3_RPA1 |
Microsoft 365 E5 | SPE_E5 |
Microsoft 365 E5 Developer (Without Windows And Audio Conferencing) | DEVELOPERPACK_E5 |
Microsoft 365 E5 Without Audio Conferencing | SPE_E5_NOPSTNCONF |
Microsoft 365 F1 | M365_F1 |
Microsoft 365 F3 | SPE_F1 |
Microsoft 365 F1 | M365_F1_COMM |
Microsoft Teams Exploratory | TEAMS_EXPLORATORY |
Microsoft Teams Rooms Standard | MEETING_ROOM |
Microsoft Teams Rooms Standard Without Audio Conferencing | MEETING_ROOM_NOAUDIOCONF |
Microsoft Teams Trial | MS_TEAMS_IW |
Office 365 A1 For Faculty | STANDARDWOFFPACK_FACULTY |
Office 365 A1 Plus For Faculty | STANDARDWOFFPACK_IW_FACULTY |
Office 365 A1 For Students | STANDARDWOFFPACK_STUDENT |
Office 365 A1 Plus For Students | STANDARDWOFFPACK_IW_STUDENT |
Office 365 A3 For Faculty | ENTERPRISEPACKPLUS_FACULTY |
Office 365 A3 For Students | ENTERPRISEPACKPLUS_STUDENT |
Office 365 A5 For Faculty | ENTERPRISEPREMIUM_FACULTY |
Office 365 A5 For Students | ENTERPRISEPREMIUM_STUDENT |
Microsoft Teams Commercial Cloud | TEAMS_COMMERCIAL_TRIAL |
Office 365 E1 | STANDARDPACK |
Office 365 E2 | STANDARDWOFFPACK |
Office 365 E3 | ENTERPRISEPACK |
Office 365 E3 Developer | DEVELOPERPACK |
Office 365 E4 | ENTERPRISEWITHSCAL |
Office 365 E5 | ENTERPRISEPREMIUM |
Office 365 E5 Without Audio Conferencing | ENTERPRISEPREMIUM_NOPSTNCONF |
Office 365 F3 | DESKLESSPACK |
Teams Rooms Premium | MTR_PREM |
Windows 10/11 Enterprise E5 (Original) | WIN_ENT_E5 |
Skype For Business Pstn Domestic And International Calling | MCOPSTN2 |
Dynamics 365 For Customer Service Enterprise Edition | DYN365_ENTERPRISE_CUSTOMER_SERVICE |
Microsoft 365 F3 Gcc | M365_F1_GOV |
Microsoft 365 G3 Gcc | M365_G3_GOV |
Office 365 G1 Gcc | STANDARDPACK_GOV |
Office 365 G3 Gcc | ENTERPRISEPACK_GOV |
Office 365 G5 Gcc | ENTERPRISEPREMIUM_GOV |
Microsoft 365 Business Standard – Prepaid Legacy | SMB_BUSINESS_PREMIUM |
Microsoft 365 Business Premium | SPB |
Powerapps Plan 1 For Government | POWERAPPS_P1_GOV |
Microsoft 365 F3 Gcc | M365_F1_GOV |
Power Virtual Agents Viral Trial | CCIBOTS_PRIVPREV_VIRAL |
Dynamics 365 Customer Engagement Plan | DYN365_ENTERPRISE_PLAN1 |
Dynamics 365 Customer Service Professional | DYN365_CUSTOMER_SERVICE_PRO |
Dynamics 365 For Customer Service Enterprise Edition | DYN365_ENTERPRISE_CUSTOMER_SERVICE |
Dynamics 365 For Sales And Customer Service Enterprise Edition | DYN365_ENTERPRISE_SALES_CUSTOMERSERVICE |
Dynamics 365 For Sales Enterprise Edition | DYN365_ENTERPRISE_SALES |
Dynamics 365 For Sales Professional | D365_SALES_PRO |
Dynamics 365 For Team Members Enterprise Edition | DYN365_ENTERPRISE_TEAM_MEMBERS |
Dynamics 365 Team Members | DYN365_TEAM_MEMBERS |
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 Developer (Without Windows And Audio Conferencing) | DEVELOPERPACK_E5 |
Microsoft 365 E5 Without Audio Conferencing | SPE_E5_NOPSTNCONF |
Office 365 E3 | ENTERPRISEPACK |
Office 365 E3_Usgov_Dod | ENTERPRISEPACK_USGOV_DOD |
Office 365 E3_Usgov_Gcchigh | ENTERPRISEPACK_USGOV_GCCHIGH |
Office 365 E4 | ENTERPRISEWITHSCAL |
Office 365 E5 | ENTERPRISEPREMIUM |
Office 365 E5 Without Audio Conferencing | ENTERPRISEPREMIUM_NOPSTNCONF |
Project Online Essentials | PROJECTESSENTIALS |
Project Online Premium | PROJECTPREMIUM |
Project Online Premium Without Project Client | PROJECTONLINE_PLAN_1 |
Project Online With Project For Office 365 | PROJECTONLINE_PLAN_2 |
Project Plan 3 | PROJECTPROFESSIONAL |
Project Plan 3 (For Department) | PROJECT_PLAN3_DEPT |
Sharepoint Online (Plan 2) | SHAREPOINTENTERPRISE |
Microsoft 365 F3 Gcc | M365_F1_GOV |
Exchange Online (Plan 1) | EXCHANGESTANDARD |
Exchange Online Essentials | EXCHANGE_S_ESSENTIALS |
Microsoft 365 Business Basic | O365_BUSINESS_ESSENTIALS |
Microsoft 365 Business Basic | SMB_BUSINESS_ESSENTIALS |
Microsoft 365 Business Standard | O365_BUSINESS_PREMIUM |
Microsoft 365 Business Standard – Prepaid Legacy | SMB_BUSINESS_PREMIUM |
Microsoft 365 Business Premium | SPB |
Microsoft Teams Exploratory | TEAMS_EXPLORATORY |
Office 365 E1 | STANDARDPACK |
Office 365 E2 | STANDARDWOFFPACK |
Office 365 G1 Gcc | STANDARDPACK_GOV |
Dynamics 365 For Talent | SKU_Dynamics_365_for_HCM_Trial |
Advanced Communications | ADV_COMMS |
Microsoft 365 A5 For Faculty | M365EDU_A5_FACULTY |
Microsoft 365 A5 For Students | M365EDU_A5_STUDENT |
Microsoft 365 E5 | SPE_E5 |
Microsoft 365 E5 Compliance | INFORMATION_PROTECTION_COMPLIANCE |
Microsoft 365 E5 Without Audio Conferencing | SPE_E5_NOPSTNCONF |
Microsoft 365 F5 Security + Compliance Add-On | SPE_F5_SECCOMP |
Microsoft 365 Security And Compliance For Firstline Workers | M365_SECURITY_COMPLIANCE_FOR_FLW |
Office 365 A5 For Faculty | ENTERPRISEPREMIUM_FACULTY |
Office 365 A5 For Students | ENTERPRISEPREMIUM_STUDENT |
Office 365 Advanced Compliance | EQUIVIO_ANALYTICS |
Office 365 Advanced Compliance For Gcc | EQUIVIO_ANALYTICS_GOV |
Office 365 E5 | ENTERPRISEPREMIUM |
Office 365 G5 Gcc | ENTERPRISEPREMIUM_GOV |
Microsoft Teams (Free) | TEAMS_FREE |
Microsoft Defender For Identity | ATA |
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 For Students | M365EDU_A5_STUDENT |
Microsoft 365 A5 For Students Use Benefit | M365EDU_A5_STUUSEBNFT |
Microsoft 365 A5 Without Audio Conferencing For Students Use Benefit | M365EDU_A5_NOPSTNCONF_STUUSEBNFT |
Office 365 A3 For Faculty | ENTERPRISEPACKPLUS_FACULTY |
Office 365 A3 For Students | ENTERPRISEPACKPLUS_STUDENT |
Office 365 A5 For Faculty | ENTERPRISEPREMIUM_FACULTY |
Office 365 A5 For Students | ENTERPRISEPREMIUM_STUDENT |
Dynamics 365 For Team Members Enterprise Edition | DYN365_ENTERPRISE_TEAM_MEMBERS |
Dynamics 365 Team Members | DYN365_TEAM_MEMBERS |
Microsoft 365 A5 For Faculty | M365EDU_A5_FACULTY |
Microsoft 365 E5 Compliance | INFORMATION_PROTECTION_COMPLIANCE |
Microsoft 365 E5 Without Audio Conferencing | SPE_E5_NOPSTNCONF |
Microsoft 365 F5 Security + Compliance Add-On | SPE_F5_SECCOMP |
Microsoft 365 E5 Suite Features | M365_E5_SUITE_COMPONENTS |
Microsoft 365 Security And Compliance For Firstline Workers | M365_SECURITY_COMPLIANCE_FOR_FLW |
Dynamics 365 Unf Ops Plan Ent Edition | Dynamics_365_for_Operations |
Microsoft 365 A5 For Faculty | M365EDU_A5_FACULTY |
Microsoft 365 E5 Developer (Without Windows And Audio Conferencing) | DEVELOPERPACK_E5 |
Microsoft 365 E5 Compliance | INFORMATION_PROTECTION_COMPLIANCE |
Microsoft 365 E5 Without Audio Conferencing | SPE_E5_NOPSTNCONF |
Microsoft 365 F5 Security + Compliance Add-On | SPE_F5_SECCOMP |
Office 365 A5 For Faculty | ENTERPRISEPREMIUM_FACULTY |
Office 365 A5 For Students | ENTERPRISEPREMIUM_STUDENT |
Office 365 Advanced Compliance For Gcc | EQUIVIO_ANALYTICS_GOV |
Office 365 E5 | ENTERPRISEPREMIUM |
Office 365 G5 Gcc | ENTERPRISEPREMIUM_GOV |
Visio Plan 2 | VISIO_PLAN2_DEPT |
Visio Online Plan 2 | VISIOCLIENT |
Dynamics 365 For Customer Service Enterprise Edition | DYN365_ENTERPRISE_CUSTOMER_SERVICE |
Dynamics 365 Customer Service Professional | DYN365_CUSTOMER_SERVICE_PRO |
Dynamics 365 Customer Engagement Plan | DYN365_ENTERPRISE_PLAN1 |
Dynamics 365 For Team Members Enterprise Edition | DYN365_ENTERPRISE_TEAM_MEMBERS |
Microsoft 365 F1 | M365_F1 |
Microsoft 365 F3 Gcc | M365_F1_GOV |
Microsoft 365 G3 Gcc | M365_G3_GOV |
Office 365 G3 Gcc | ENTERPRISEPACK_GOV |
Office 365 G5 Gcc | ENTERPRISEPREMIUM_GOV |
Skype For Business Pstn Usage Calling Plan | MCOPSTNPP |
Office 365 Midsize Business | MIDSIZEPACK |
Azure Information Protection Plan 1 | RIGHTSMANAGEMENT |
Enterprise Mobility + Security E3 | EMS |
Enterprise Mobility + Security E5 | EMSPREMIUM |
Enterprise Mobility + Security G3 Gcc | EMS_GOV |
Enterprise Mobility + Security G5 Gcc | EMSPREMIUM_GOV |
Microsoft 365 A3 For Faculty | M365EDU_A3_FACULTY |
Microsoft 365 A3 For Students | M365EDU_A3_STUDENT |
Microsoft 365 A3 – Unattended License For Students Use Benefit | M365EDU_A3_STUUSEBNFT_RPA1 |
Microsoft 365 A5 For Faculty | M365EDU_A5_FACULTY |
Microsoft 365 A5 For Students | M365EDU_A5_STUDENT |
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 Developer (Without Windows And Audio Conferencing) | DEVELOPERPACK_E5 |
Microsoft 365 E5 Without Audio Conferencing | SPE_E5_NOPSTNCONF |
Microsoft 365 F1 | M365_F1 |
Microsoft 365 F3 | SPE_F1 |
Microsoft 365 F1 | M365_F1_COMM |
Microsoft 365 A5 For Faculty | M365EDU_A5_FACULTY |
Microsoft 365 A5 For Students | M365EDU_A5_STUDENT |
Microsoft 365 E5 | SPE_E5 |
Microsoft 365 E5 Developer (Without Windows And Audio Conferencing) | DEVELOPERPACK_E5 |
Microsoft 365 E5 Without Audio Conferencing | SPE_E5_NOPSTNCONF |
Office 365 A5 For Faculty | ENTERPRISEPREMIUM_FACULTY |
Office 365 A5 For Students | ENTERPRISEPREMIUM_STUDENT |
Office 365 E3 Developer | DEVELOPERPACK |
Office 365 E5 | ENTERPRISEPREMIUM |
Office 365 E5 Without Audio Conferencing | ENTERPRISEPREMIUM_NOPSTNCONF |
Microsoft 365 A5 For Faculty | M365EDU_A5_FACULTY |
Microsoft 365 E5 Developer (Without Windows And Audio Conferencing) | DEVELOPERPACK_E5 |
Microsoft 365 E5 Compliance | INFORMATION_PROTECTION_COMPLIANCE |
Microsoft 365 E5 Without Audio Conferencing | SPE_E5_NOPSTNCONF |
Microsoft 365 F5 Security + Compliance Add-On | SPE_F5_SECCOMP |
Microsoft 365 Security And Compliance For Firstline Workers | M365_SECURITY_COMPLIANCE_FOR_FLW |
Office 365 A5 For Faculty | ENTERPRISEPREMIUM_FACULTY |
Office 365 A5 For Students | ENTERPRISEPREMIUM_STUDENT |
Office 365 Advanced Compliance For Gcc | EQUIVIO_ANALYTICS_GOV |
Office 365 E5 | ENTERPRISEPREMIUM |
Office 365 G5 Gcc | ENTERPRISEPREMIUM_GOV |
Microsoft 365 A5 For Faculty | M365EDU_A5_FACULTY |
Microsoft 365 E5 Developer (Without Windows And Audio Conferencing) | DEVELOPERPACK_E5 |
Microsoft 365 E5 Compliance | INFORMATION_PROTECTION_COMPLIANCE |
Microsoft 365 E5 Without Audio Conferencing | SPE_E5_NOPSTNCONF |
Microsoft 365 F5 Security + Compliance Add-On | SPE_F5_SECCOMP |
Microsoft 365 Security And Compliance For Firstline Workers | M365_SECURITY_COMPLIANCE_FOR_FLW |
Office 365 A5 For Faculty | ENTERPRISEPREMIUM_FACULTY |
Office 365 A5 For Students | ENTERPRISEPREMIUM_STUDENT |
Office 365 Advanced Compliance For Gcc | EQUIVIO_ANALYTICS_GOV |
Office 365 E5 | ENTERPRISEPREMIUM |
Office 365 G5 Gcc | ENTERPRISEPREMIUM_GOV |
Microsoft 365 G3 Gcc | M365_G3_GOV |
Office 365 G1 Gcc | STANDARDPACK_GOV |
Office 365 G3 Gcc | ENTERPRISEPACK_GOV |
Microsoft Power Automate Plan 2 | FLOW_P2 |
Microsoft Power Apps Plan 2 (Qualified Offer) | POWERFLOW_P2 |
Power Apps Per User Plan | POWERAPPS_PER_USER |
Power Automate Per User Plan | FLOW_PER_USER |
Power Automate Per User Plan Dept | FLOW_PER_USER_DEPT |
Microsoft 365 Business Premium | SPB |
Microsoft 365 E3 | SPE_E3 |
Microsoft 365 E3 – Unattended License | SPE_E3_RPA1 |
Dynamics 365 For Sales Professional | D365_SALES_PRO |
Office 365 Small Business | LITEPACK |
Office 365 Small Business Premium | LITEPACK_P2 |
Microsoft 365 A5 For Faculty | M365EDU_A5_FACULTY |
Microsoft 365 A5 For Students | M365EDU_A5_STUDENT |
Microsoft 365 E5 | SPE_E5 |
Microsoft 365 E5 Developer (Without Windows And Audio Conferencing) | DEVELOPERPACK_E5 |
Microsoft 365 E5 Without Audio Conferencing | SPE_E5_NOPSTNCONF |
Office 365 A5 For Faculty | ENTERPRISEPREMIUM_FACULTY |
Office 365 A5 For Students | ENTERPRISEPREMIUM_STUDENT |
Office 365 E5 | ENTERPRISEPREMIUM |
Office 365 E5 Without Audio Conferencing | ENTERPRISEPREMIUM_NOPSTNCONF |
Power Bi Premium Per User | PBI_PREMIUM_PER_USER |
Power Bi Premium Per User Dept | PBI_PREMIUM_PER_USER_DEPT |
Power Bi Pro | POWER_BI_PRO |
Power Bi Pro Ce | POWER_BI_PRO_CE |
Power Bi Pro Dept | POWER_BI_PRO_DEPT |
Multi-Geo Capabilities In Office 365 | OFFICE365_MULTIGEO |
Microsoft 365 F3 | SPE_F1 |
Office 365 F3 | DESKLESSPACK |
Dynamics 365 For Sales Professional Trial | D365_SALES_PRO_IW |
Microsoft 365 Business Premium | SPB |
Microsoft Teams Exploratory | TEAMS_EXPLORATORY |
Microsoft Teams Commercial Cloud | TEAMS_COMMERCIAL_TRIAL |
Office 365 E1 | STANDARDPACK |
Office 365 E2 | STANDARDWOFFPACK |
Power Apps Per User Plan For Government | POWERAPPS_PER_USER_GCC |
Microsoft 365 Business Basic | O365_BUSINESS_ESSENTIALS |
Microsoft 365 Business Standard | O365_BUSINESS_PREMIUM |
Microsoft 365 Business Premium | SPB |
Microsoft 365 E3 | SPE_E3 |
Microsoft 365 E3 – Unattended License | SPE_E3_RPA1 |
Microsoft 365 E5 | SPE_E5 |
Microsoft 365 E5 Developer (Without Windows And Audio Conferencing) | DEVELOPERPACK_E5 |
Microsoft 365 E5 Without Audio Conferencing | SPE_E5_NOPSTNCONF |
Microsoft 365 F1 | M365_F1 |
Microsoft 365 F3 | SPE_F1 |
Microsoft 365 F1 | M365_F1_COMM |
Microsoft Teams Exploratory | TEAMS_EXPLORATORY |
Microsoft Teams Trial | MS_TEAMS_IW |
Microsoft Teams Commercial Cloud | TEAMS_COMMERCIAL_TRIAL |
Office 365 E1 | STANDARDPACK |
Office 365 E2 | STANDARDWOFFPACK |
Office 365 E3 | ENTERPRISEPACK |
Office 365 E4 | ENTERPRISEWITHSCAL |
Office 365 E5 | ENTERPRISEPREMIUM |
Office 365 E5 Without Audio Conferencing | ENTERPRISEPREMIUM_NOPSTNCONF |
Office 365 F3 | DESKLESSPACK |
Exchange Enterprise Cal Services (Eop Dlp) | EOP_ENTERPRISE_PREMIUM |
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 Students Use Benefit | M365EDU_A5_STUUSEBNFT |
Microsoft 365 A5 Without Audio Conferencing For Students Use Benefit | M365EDU_A5_NOPSTNCONF_STUUSEBNFT |
Microsoft 365 E3 | SPE_E3 |
Microsoft 365 E3 – Unattended License | SPE_E3_RPA1 |
Office 365 A1 For Faculty | STANDARDWOFFPACK_FACULTY |
Office 365 A1 Plus For Faculty | STANDARDWOFFPACK_IW_FACULTY |
Office 365 A1 For Students | STANDARDWOFFPACK_STUDENT |
Office 365 A1 Plus For Students | STANDARDWOFFPACK_IW_STUDENT |
Office 365 A3 For Faculty | ENTERPRISEPACKPLUS_FACULTY |
Office 365 A3 For Students | ENTERPRISEPACKPLUS_STUDENT |
Office 365 E3 | ENTERPRISEPACK |
Office 365 E3 Developer | DEVELOPERPACK |
Office 365 E4 | ENTERPRISEWITHSCAL |
Power Automate Per User Plan For Government | FLOW_PER_USER_GCC |
Powerapps Plan 1 For Government | POWERAPPS_P1_GOV |
Dynamics 365 – Additional Database Storage (Qualified Offer) | CRMSTORAGE |
Telstra Calling For O365 | MCOPSTNEAU2 |
Microsoft 365 A3 For Faculty | M365EDU_A3_FACULTY |
Microsoft 365 A5 For Faculty | M365EDU_A5_FACULTY |
Microsoft 365 Business Premium | SPB |
Microsoft 365 E3 | SPE_E3 |
Microsoft 365 E3 – Unattended License | SPE_E3_RPA1 |
Microsoft 365 E5 Without Audio Conferencing | SPE_E5_NOPSTNCONF |
Microsoft 365 F3 | SPE_F1 |
Universal Print | UNIVERSAL_PRINT |
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_VDA_E3 |
Windows 10 Enterprise E5 | WIN10_VDA_E5 |
Rights Management Adhoc | RIGHTSMANAGEMENT_ADHOC |
Microsoft 365 A3 For Faculty | M365EDU_A3_FACULTY |
Microsoft 365 A5 For Faculty | M365EDU_A5_FACULTY |
Microsoft 365 Business Premium | SPB |
Microsoft 365 E3 | SPE_E3 |
Microsoft 365 E3 – Unattended License | SPE_E3_RPA1 |
Microsoft 365 E5 Without Audio Conferencing | SPE_E5_NOPSTNCONF |
Microsoft 365 F3 | SPE_F1 |
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_VDA_E3 |
Windows 10 Enterprise E5 | WIN10_VDA_E5 |
Nonprofit Portal | NONPROFIT_PORTAL |
Power Automate Per Flow Plan | FLOW_BUSINESS_PROCESS |
Dynamics 365 Business Central Essentials | DYN365_BUSCENTRAL_ESSENTIAL |
Dynamics 365 Business Central External Accountant | DYN365_FINANCIALS_ACCOUNTANT_SKU |
Dynamics 365 Business Central Premium | DYN365_BUSCENTRAL_PREMIUM |
Dynamics 365 Customer Engagement Plan | DYN365_ENTERPRISE_PLAN1 |
Dynamics 365 Finance | DYN365_FINANCE |
Dynamics 365 For Customer Service Enterprise Edition | DYN365_ENTERPRISE_CUSTOMER_SERVICE |
Dynamics 365 For Financials Business Edition | DYN365_FINANCIALS_BUSINESS_SKU |
Dynamics 365 For Sales And Customer Service Enterprise Edition | DYN365_ENTERPRISE_SALES_CUSTOMERSERVICE |
Dynamics 365 For Sales Enterprise Edition | DYN365_ENTERPRISE_SALES |
Dynamics 365 For Supply Chain Management | DYN365_SCM |
Dynamics 365 For Talent | SKU_Dynamics_365_for_HCM_Trial |
Dynamics 365 Team Members | DYN365_TEAM_MEMBERS |
Microsoft Dynamics Crm Online Basic | CRMPLAN2 |
Microsoft Dynamics Crm Online | CRMSTANDARD |
Dynamics 365 Sales Premium Viral Trial | Dynamics_365_Sales_Premium_Viral_Trial |
Microsoft 365 F3 | SPE_F1 |
Office 365 F3 | DESKLESSPACK |
Office 365 G5 Gcc | ENTERPRISEPREMIUM_GOV |
Microsoft 365 F3 | SPE_F1 |
Microsoft 365 F3 Gcc | M365_F1_GOV |
Office 365 F3 | DESKLESSPACK |
Dynamics 365 Guides | GUIDES_USER |
Project Plan 3 | PROJECTPROFESSIONAL |
Project Plan 3 (For Department) | PROJECT_PLAN3_DEPT |
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 Sales Premium Viral Trial | Dynamics_365_Sales_Premium_Viral_Trial |
Microsoft Stream Storage Add-On (500 Gb) | STREAM_STORAGE |
Sensor Data Intelligence Scenario Add-In For Dynamics 365 Supply Chain Management | DYN365_IOT_INTELLIGENCE_SCENARIO |
Office 365 G5 Gcc | ENTERPRISEPREMIUM_GOV |
Microsoft 365 A5 For Faculty | M365EDU_A5_FACULTY |
Microsoft 365 A5 For Students | M365EDU_A5_STUDENT |
Microsoft 365 E5 | SPE_E5 |
Microsoft 365 E5 Security | IDENTITY_THREAT_PROTECTION |
Microsoft 365 E5 Security For Ems E5 | IDENTITY_THREAT_PROTECTION_FOR_EMS_E5 |
Microsoft 365 E5 Without Audio Conferencing | SPE_E5_NOPSTNCONF |
Microsoft 365 F5 Security Add-On | SPE_F5_SEC |
Microsoft 365 F5 Security + Compliance Add-On | SPE_F5_SECCOMP |
Microsoft 365 Security And Compliance For Firstline Workers | M365_SECURITY_COMPLIANCE_FOR_FLW |
Microsoft Defender For Endpoint | WIN_DEF_ATP |
Microsoft Defender For Endpoint Server | MDATP_Server |
Windows 10/11 Enterprise E5 (Original) | WIN_ENT_E5 |
Windows 10 Enterprise E5 | WIN10_VDA_E5 |
Windows 10 Enterprise E5 Commercial (Gcc Compatible) | WINE5_GCC_COMPAT |
Dynamics 365 Business Central Essentials | DYN365_BUSCENTRAL_ESSENTIAL |
Dynamics 365 Business Central External Accountant | DYN365_FINANCIALS_ACCOUNTANT_SKU |
Dynamics 365 Business Central Premium | DYN365_BUSCENTRAL_PREMIUM |
Dynamics 365 Finance | DYN365_FINANCE |
Dynamics 365 For Customer Service Enterprise Edition | DYN365_ENTERPRISE_CUSTOMER_SERVICE |
Dynamics 365 For Financials Business Edition | DYN365_FINANCIALS_BUSINESS_SKU |
Dynamics 365 For Sales And Customer Service Enterprise Edition | DYN365_ENTERPRISE_SALES_CUSTOMERSERVICE |
Dynamics 365 For Sales Enterprise Edition | DYN365_ENTERPRISE_SALES |
Dynamics 365 For Supply Chain Management | DYN365_SCM |
Dynamics 365 For Talent | SKU_Dynamics_365_for_HCM_Trial |
Microsoft Dynamics Crm Online Basic | CRMPLAN2 |
Microsoft Dynamics Crm Online | CRMSTANDARD |
Microsoft 365 F3 Gcc | M365_F1_GOV |
Exchange Online (Plan 1) | EXCHANGESTANDARD |
Exchange Online (Plan 1) For Gcc | EXCHANGESTANDARD_GOV |
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 For Students | M365EDU_A5_STUDENT |
Microsoft 365 A5 For Students Use Benefit | M365EDU_A5_STUUSEBNFT |
Microsoft 365 A5 Without Audio Conferencing For Students Use Benefit | M365EDU_A5_NOPSTNCONF_STUUSEBNFT |
Microsoft 365 Apps For Faculty | OFFICESUBSCRIPTION_FACULTY |
Microsoft 365 Business Standard | O365_BUSINESS_PREMIUM |
Microsoft 365 Business Premium | SPB |
Microsoft 365 E3 | SPE_E3 |
Microsoft 365 E3 – Unattended License | SPE_E3_RPA1 |
Microsoft 365 E5 | SPE_E5 |
Microsoft 365 E5 Developer (Without Windows And Audio Conferencing) | DEVELOPERPACK_E5 |
Microsoft 365 E5 Without Audio Conferencing | SPE_E5_NOPSTNCONF |
Microsoft 365 F1 | M365_F1 |
Microsoft 365 F3 | SPE_F1 |
Microsoft 365 F1 | M365_F1_COMM |
Microsoft Teams Exploratory | TEAMS_EXPLORATORY |
Office 365 A1 For Faculty | STANDARDWOFFPACK_FACULTY |
Office 365 A1 Plus For Faculty | STANDARDWOFFPACK_IW_FACULTY |
Office 365 A1 For Students | STANDARDWOFFPACK_STUDENT |
Office 365 A1 Plus For Students | STANDARDWOFFPACK_IW_STUDENT |
Office 365 A3 For Faculty | ENTERPRISEPACKPLUS_FACULTY |
Office 365 A3 For Students | ENTERPRISEPACKPLUS_STUDENT |
Office 365 A5 For Faculty | ENTERPRISEPREMIUM_FACULTY |
Office 365 A5 For Students | ENTERPRISEPREMIUM_STUDENT |
Office 365 E3 | ENTERPRISEPACK |
Office 365 E5 | ENTERPRISEPREMIUM |
Office 365 F3 | DESKLESSPACK |
Office 365 G1 Gcc | STANDARDPACK_GOV |
Office 365 G3 Gcc | ENTERPRISEPACK_GOV |
Office 365 G5 Gcc | ENTERPRISEPREMIUM_GOV |
Dynamics 365 For Sales Professional | D365_SALES_PRO |
Microsoft 365 F3 Gcc | M365_F1_GOV |
Multi-Geo Capabilities In Office 365 | OFFICE365_MULTIGEO |
Office 365 Advanced Compliance For Gcc | EQUIVIO_ANALYTICS_GOV |
Office 365 G5 Gcc | ENTERPRISEPREMIUM_GOV |
Azure Active Directory Premium P1 | AAD_PREMIUM |
Azure Active Directory Premium P2 | AAD_PREMIUM_P2 |
Enterprise Mobility + Security E3 | EMS |
Enterprise Mobility + Security E5 | EMSPREMIUM |
Enterprise Mobility + Security G3 Gcc | EMS_GOV |
Enterprise Mobility + Security G5 Gcc | EMSPREMIUM_GOV |
Microsoft Azure Multi-Factor Authentication | MFA_STANDALONE |
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 For Students | M365EDU_A5_STUDENT |
Microsoft 365 A5 For Students Use Benefit | M365EDU_A5_STUUSEBNFT |
Microsoft 365 A5 Without Audio Conferencing For Students Use Benefit | M365EDU_A5_NOPSTNCONF_STUUSEBNFT |
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 Developer (Without Windows And Audio Conferencing) | DEVELOPERPACK_E5 |
Microsoft 365 E5 Without Audio Conferencing | SPE_E5_NOPSTNCONF |
Microsoft 365 F1 | M365_F1 |
Microsoft 365 F3 | SPE_F1 |
Microsoft 365 F3 Gcc | M365_F1_GOV |
Microsoft 365 F1 | M365_F1_COMM |
Microsoft 365 G3 Gcc | M365_G3_GOV |
Visio Plan 2 For Gcc | VISIOCLIENT_GOV |
Microsoft 365 F3 Gcc | M365_F1_GOV |
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 For Students | M365EDU_A5_STUDENT |
Microsoft 365 A5 For Students Use Benefit | M365EDU_A5_STUUSEBNFT |
Microsoft 365 A5 Without Audio Conferencing For Students Use Benefit | M365EDU_A5_NOPSTNCONF_STUUSEBNFT |
Microsoft 365 E5 | SPE_E5 |
Microsoft 365 E5 Developer (Without Windows And Audio Conferencing) | DEVELOPERPACK_E5 |
Microsoft 365 E5 Without Audio Conferencing | SPE_E5_NOPSTNCONF |
Office 365 A3 For Faculty | ENTERPRISEPACKPLUS_FACULTY |
Office 365 A3 For Students | ENTERPRISEPACKPLUS_STUDENT |
Office 365 A5 For Faculty | ENTERPRISEPREMIUM_FACULTY |
Office 365 A5 For Students | ENTERPRISEPREMIUM_STUDENT |
Office 365 Cloud App Security | ADALLOM_O365 |
Office 365 E5 | ENTERPRISEPREMIUM |
Office 365 E5 Without Audio Conferencing | ENTERPRISEPREMIUM_NOPSTNCONF |
Office 365 G5 Gcc | ENTERPRISEPREMIUM_GOV |
Microsoft 365 G3 Gcc | M365_G3_GOV |
Office 365 G3 Gcc | ENTERPRISEPACK_GOV |
Office 365 G5 Gcc | ENTERPRISEPREMIUM_GOV |
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 For Students | M365EDU_A5_STUDENT |
Microsoft 365 A5 For Students Use Benefit | M365EDU_A5_STUUSEBNFT |
Microsoft 365 A5 Without Audio Conferencing For Students Use Benefit | M365EDU_A5_NOPSTNCONF_STUUSEBNFT |
Microsoft 365 Business Standard | O365_BUSINESS_PREMIUM |
Microsoft 365 Business Standard – Prepaid Legacy | SMB_BUSINESS_PREMIUM |
Microsoft 365 Business Premium | SPB |
Microsoft 365 E3 | SPE_E3 |
Microsoft 365 E3 – Unattended License | SPE_E3_RPA1 |
Microsoft 365 E5 | SPE_E5 |
Microsoft 365 E5 Developer (Without Windows And Audio Conferencing) | DEVELOPERPACK_E5 |
Microsoft 365 E5 Without Audio Conferencing | SPE_E5_NOPSTNCONF |
Microsoft 365 F3 | SPE_F1 |
Microsoft Teams Exploratory | TEAMS_EXPLORATORY |
Office 365 A1 For Faculty | STANDARDWOFFPACK_FACULTY |
Office 365 A1 Plus For Faculty | STANDARDWOFFPACK_IW_FACULTY |
Office 365 A1 For Students | STANDARDWOFFPACK_STUDENT |
Office 365 A1 Plus For Students | STANDARDWOFFPACK_IW_STUDENT |
Office 365 A3 For Faculty | ENTERPRISEPACKPLUS_FACULTY |
Office 365 A3 For Students | ENTERPRISEPACKPLUS_STUDENT |
Office 365 A5 For Faculty | ENTERPRISEPREMIUM_FACULTY |
Office 365 A5 For Students | ENTERPRISEPREMIUM_STUDENT |
Office 365 E1 | STANDARDPACK |
Office 365 E2 | STANDARDWOFFPACK |
Office 365 E3 | ENTERPRISEPACK |
Office 365 E4 | ENTERPRISEWITHSCAL |
Office 365 E5 | ENTERPRISEPREMIUM |
Office 365 E5 Without Audio Conferencing | ENTERPRISEPREMIUM_NOPSTNCONF |
Office 365 F3 | DESKLESSPACK |
Office 365 Small Business Premium | LITEPACK_P2 |
Microsoft 365 A3 – Unattended License For Students Use Benefit | M365EDU_A3_STUUSEBNFT_RPA1 |
Microsoft 365 E3 – Unattended License | SPE_E3_RPA1 |
Microsoft Defender For Office 365 (Plan 2) | THREAT_INTELLIGENCE |
Microsoft 365 A5 For Faculty | M365EDU_A5_FACULTY |
Microsoft 365 A5 For Students | M365EDU_A5_STUDENT |
Microsoft 365 A5 For Students Use Benefit | M365EDU_A5_STUUSEBNFT |
Microsoft 365 A5 Without Audio Conferencing For Students Use Benefit | M365EDU_A5_NOPSTNCONF_STUUSEBNFT |
Microsoft 365 E5 | SPE_E5 |
Microsoft 365 E5 Developer (Without Windows And Audio Conferencing) | DEVELOPERPACK_E5 |
Microsoft 365 E5 Security | IDENTITY_THREAT_PROTECTION |
Microsoft 365 E5 Security For Ems E5 | IDENTITY_THREAT_PROTECTION_FOR_EMS_E5 |
Microsoft 365 E5 Without Audio Conferencing | SPE_E5_NOPSTNCONF |
Microsoft 365 F5 Security Add-On | SPE_F5_SEC |
Microsoft 365 F5 Security + Compliance Add-On | SPE_F5_SECCOMP |
Microsoft 365 Security And Compliance For Firstline Workers | M365_SECURITY_COMPLIANCE_FOR_FLW |
Office 365 A5 For Faculty | ENTERPRISEPREMIUM_FACULTY |
Office 365 A5 For Students | ENTERPRISEPREMIUM_STUDENT |
Office 365 E5 | ENTERPRISEPREMIUM |
Office 365 E5 Without Audio Conferencing | ENTERPRISEPREMIUM_NOPSTNCONF |
Microsoft 365 Business Premium | SPB |
Power Apps Per User Plan For Government | POWERAPPS_PER_USER_GCC |
Dynamics 365 Business Central Premium | DYN365_BUSCENTRAL_PREMIUM |
Microsoft 365 Business Premium | SPB |
Microsoft Intune Smb | INTUNE_SMB |
Office 365 G1 Gcc | STANDARDPACK_GOV |
Power Apps Per User Plan For Government | POWERAPPS_PER_USER_GCC |
Microsoft 365 F3 Gcc | M365_F1_GOV |
Microsoft 365 G3 Gcc | M365_G3_GOV |
Office 365 G1 Gcc | STANDARDPACK_GOV |
Office 365 G3 Gcc | ENTERPRISEPACK_GOV |
Office 365 G5 Gcc | ENTERPRISEPREMIUM_GOV |
Project Online Essentials For Gcc | PROJECTESSENTIALS_GOV |
Project Plan 3 For Gcc | PROJECTPROFESSIONAL_GOV |
Project Plan 5 For Gcc | PROJECTPREMIUM_GOV |
Microsoft Defender For Office 365 (Plan 2) Gcc | THREAT_INTELLIGENCE_GOV |
Office 365 G5 Gcc | ENTERPRISEPREMIUM_GOV |
Microsoft 365 F1 | M365_F1 |
Microsoft 365 F3 | SPE_F1 |
Microsoft 365 F1 | M365_F1_COMM |
Microsoft Teams (Free) | TEAMS_FREE |
Microsoft Teams Trial | MS_TEAMS_IW |
Microsoft Teams Commercial Cloud | TEAMS_COMMERCIAL_TRIAL |
Office 365 F3 | DESKLESSPACK |
Dynamics 365 Asset Management Addl Assets | DYN365_ASSETMANAGEMENT |
Exchange Online Pop | EXCHANGETELCO |
Dynamics 365 Customer Voice Additional Responses | Forms_Pro_AddOn |
Microsoft 365 F3 | SPE_F1 |
Office 365 F3 | DESKLESSPACK |
Power Apps Per User Plan For Government | POWERAPPS_PER_USER_GCC |
Dynamics 365 Business Central Essentials | DYN365_BUSCENTRAL_ESSENTIAL |
Dynamics 365 For Financials Business Edition | DYN365_FINANCIALS_BUSINESS_SKU |
Common Data Service Database Capacity For Government | CDS_DB_CAPACITY_GOV |
Enterprise Mobility + Security G3 Gcc | EMS_GOV |
Enterprise Mobility + Security G5 Gcc | EMSPREMIUM_GOV |
Microsoft 365 Audio Conferencing For Gcc | MCOMEETADV_GOC |
Microsoft 365 Domestic Calling Plan For Gcc | MCOPSTN_1_GOV |
Microsoft 365 Audio Conferencing For Gcc | MCOMEETADV_GOV |
Microsoft 365 Phone System For Gcc | MCOEV_GOV |
Microsoft Intune Device For Government | INTUNE_A_D_GOV |
Office 365 Extra File Storage For Gcc | SHAREPOINTSTORAGE_GOV |
Power Apps Per User Plan For Government | POWERAPPS_PER_USER_GCC |
Powerapps Plan 1 For Government | POWERAPPS_P1_GOV |
Power Apps Portals Login Capacity Add-On Tier 2 (10 Unit Min) For Government | POWERAPPS_PORTALS_LOGIN_T2_GCC |
Power Apps Portals Page View Capacity Add-On For Government | POWERAPPS_PORTALS_PAGEVIEW_GCC |
Power Automate Per User Plan For Government | FLOW_PER_USER_GCC |
Power Bi Pro For Gcc | POWERBI_PRO_GOV |
Project Online Essentials For Gcc | PROJECTESSENTIALS_GOV |
Project Plan 5 For Gcc | PROJECTPREMIUM_GOV |
Visio Plan 2 For Gcc | VISIOCLIENT_GOV |
Windows 10 Enterprise E5 Commercial (Gcc Compatible) | WINE5_GCC_COMPAT |
Office 365 G5 Gcc | ENTERPRISEPREMIUM_GOV |
Microsoft 365 Business Basic | O365_BUSINESS_ESSENTIALS |
Microsoft 365 Business Basic | SMB_BUSINESS_ESSENTIALS |
Microsoft 365 Business Standard | O365_BUSINESS_PREMIUM |
Microsoft 365 Business Standard – Prepaid Legacy | SMB_BUSINESS_PREMIUM |
Microsoft 365 Business Premium | SPB |
Microsoft Teams Exploratory | TEAMS_EXPLORATORY |
Microsoft Teams Trial | MS_TEAMS_IW |
Microsoft Teams Commercial Cloud | TEAMS_COMMERCIAL_TRIAL |
Office 365 E1 | STANDARDPACK |
Office 365 E2 | STANDARDWOFFPACK |
Azure Active Directory Premium P1 | AAD_PREMIUM |
Azure Active Directory Premium P2 | AAD_PREMIUM_P2 |
Enterprise Mobility + Security E3 | EMS |
Enterprise Mobility + Security G3 Gcc | EMS_GOV |
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 Students Use Benefit | M365EDU_A5_STUUSEBNFT |
Microsoft 365 Business Premium | SPB |
Microsoft 365 E3 | SPE_E3 |
Microsoft 365 E3 – Unattended License | SPE_E3_RPA1 |
Microsoft 365 E3_Usgov_Gcchigh | SPE_E3_USGOV_GCCHIGH |
Microsoft 365 F1 | M365_F1 |
Microsoft 365 F3 | SPE_F1 |
Microsoft 365 F1 | M365_F1_COMM |
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 For Students | M365EDU_A5_STUDENT |
Microsoft 365 A5 For Students Use Benefit | M365EDU_A5_STUUSEBNFT |
Microsoft 365 A5 Without Audio Conferencing For Students Use Benefit | M365EDU_A5_NOPSTNCONF_STUUSEBNFT |
Microsoft 365 Apps For Faculty | OFFICESUBSCRIPTION_FACULTY |
Microsoft 365 Business Standard | O365_BUSINESS_PREMIUM |
Microsoft 365 Business Premium | SPB |
Microsoft 365 E3 | SPE_E3 |
Microsoft 365 E3 – Unattended License | SPE_E3_RPA1 |
Microsoft 365 E5 | SPE_E5 |
Microsoft 365 E5 Developer (Without Windows And Audio Conferencing) | DEVELOPERPACK_E5 |
Microsoft 365 E5 Without Audio Conferencing | SPE_E5_NOPSTNCONF |
Microsoft 365 F3 | SPE_F1 |
Microsoft 365 F3 Gcc | M365_F1_GOV |
Microsoft 365 F1 | M365_F1_COMM |
Microsoft Teams Exploratory | TEAMS_EXPLORATORY |
Office 365 A1 For Faculty | STANDARDWOFFPACK_FACULTY |
Office 365 A1 Plus For Faculty | STANDARDWOFFPACK_IW_FACULTY |
Office 365 A1 For Students | STANDARDWOFFPACK_STUDENT |
Office 365 A1 Plus For Students | STANDARDWOFFPACK_IW_STUDENT |
Office 365 A3 For Faculty | ENTERPRISEPACKPLUS_FACULTY |
Office 365 A3 For Students | ENTERPRISEPACKPLUS_STUDENT |
Office 365 A5 For Faculty | ENTERPRISEPREMIUM_FACULTY |
Office 365 A5 For Students | ENTERPRISEPREMIUM_STUDENT |
Office 365 E3 | ENTERPRISEPACK |
Office 365 E5 | ENTERPRISEPREMIUM |
Office 365 F3 | DESKLESSPACK |
Office 365 G1 Gcc | STANDARDPACK_GOV |
Office 365 G5 Gcc | ENTERPRISEPREMIUM_GOV |
Power Bi Pro For Gcc | POWERBI_PRO_GOV |
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 Apps For Faculty | OFFICESUBSCRIPTION_FACULTY |
Microsoft 365 E3 | SPE_E3 |
Microsoft 365 E3 – Unattended License | SPE_E3_RPA1 |
Office 365 A3 For Faculty | ENTERPRISEPACKPLUS_FACULTY |
Office 365 A3 For Students | ENTERPRISEPACKPLUS_STUDENT |
Office 365 E3 | ENTERPRISEPACK |
Powerapps Per App Baseline Access | POWERAPPS_PER_APP_IW |
Dynamics 365 Talent: Attract | DYN365_CUSTOMER_INSIGHTS_VIRAL |
Dynamics 365 Customer Service Enterprise Viral Trial | Dynamics_365_Customer_Service_Enterprise_viral_trial |
Office 365 G1 Gcc | STANDARDPACK_GOV |
Microsoft 365 A3 For Faculty | M365EDU_A3_FACULTY |
Microsoft 365 Business Standard | O365_BUSINESS_PREMIUM |
Microsoft 365 E3 | SPE_E3 |
Microsoft 365 E3 – Unattended License | SPE_E3_RPA1 |
Office 365 A3 For Faculty | ENTERPRISEPACKPLUS_FACULTY |
Office 365 A3 For Students | ENTERPRISEPACKPLUS_STUDENT |
Office 365 E3 | ENTERPRISEPACK |
Dynamics 365 Unf Ops Plan Ent Edition | Dynamics_365_for_Operations |
Microsoft 365 A5 For Faculty | M365EDU_A5_FACULTY |
Microsoft 365 A5 For Students | M365EDU_A5_STUDENT |
Office 365 A5 For Faculty | ENTERPRISEPREMIUM_FACULTY |
Office 365 A5 For Students | ENTERPRISEPREMIUM_STUDENT |
Dynamics 365 Customer Engagement Plan | DYN365_ENTERPRISE_PLAN1 |
Visio Plan 2 For Gcc | VISIOCLIENT_GOV |
Dynamics 365 For Customer Service Enterprise Edition | DYN365_ENTERPRISE_CUSTOMER_SERVICE |
Microsoft 365 E3_Usgov_Gcchigh | SPE_E3_USGOV_GCCHIGH |
Office 365 E3_Usgov_Gcchigh | ENTERPRISEPACK_USGOV_GCCHIGH |
Exchange Online (Plan 1) | EXCHANGESTANDARD |
Exchange Online Essentials (Exo P1 Based) | EXCHANGEESSENTIALS |
Microsoft 365 Business Basic | O365_BUSINESS_ESSENTIALS |
Microsoft 365 Business Basic | SMB_BUSINESS_ESSENTIALS |
Microsoft 365 Business Standard | O365_BUSINESS_PREMIUM |
Microsoft 365 Business Standard – Prepaid Legacy | SMB_BUSINESS_PREMIUM |
Microsoft 365 Business Premium | SPB |
Microsoft Teams Exploratory | TEAMS_EXPLORATORY |
Office 365 A1 For Faculty | STANDARDWOFFPACK_FACULTY |
Office 365 A1 Plus For Faculty | STANDARDWOFFPACK_IW_FACULTY |
Office 365 A1 For Students | STANDARDWOFFPACK_STUDENT |
Office 365 A1 Plus For Students | STANDARDWOFFPACK_IW_STUDENT |
Office 365 E1 | STANDARDPACK |
Office 365 E2 | STANDARDWOFFPACK |
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 Students Use Benefit | M365EDU_A5_STUUSEBNFT |
Microsoft 365 A5 Without Audio Conferencing For Students Use Benefit | M365EDU_A5_NOPSTNCONF_STUUSEBNFT |
Microsoft 365 Apps For Faculty | OFFICESUBSCRIPTION_FACULTY |
Office 365 A1 For Faculty | STANDARDWOFFPACK_FACULTY |
Office 365 A1 Plus For Faculty | STANDARDWOFFPACK_IW_FACULTY |
Office 365 A1 For Students | STANDARDWOFFPACK_STUDENT |
Office 365 A1 Plus For Students | STANDARDWOFFPACK_IW_STUDENT |
Office 365 A3 For Faculty | ENTERPRISEPACKPLUS_FACULTY |
Office 365 A3 For Students | ENTERPRISEPACKPLUS_STUDENT |
Microsoft 365 Business Premium | SPB |
Microsoft 365 F5 Security + Compliance Add-On | SPE_F5_SECCOMP |
Microsoft 365 Security And Compliance For Firstline Workers | M365_SECURITY_COMPLIANCE_FOR_FLW |
Microsoft 365 A5 For Faculty | M365EDU_A5_FACULTY |
Microsoft 365 A5 For Students | M365EDU_A5_STUDENT |
Microsoft 365 E5 | SPE_E5 |
Microsoft 365 E5 Developer (Without Windows And Audio Conferencing) | DEVELOPERPACK_E5 |
Microsoft 365 E5 Without Audio Conferencing | SPE_E5_NOPSTNCONF |
Office 365 A5 For Faculty | ENTERPRISEPREMIUM_FACULTY |
Office 365 A5 For Students | ENTERPRISEPREMIUM_STUDENT |
Office 365 E5 | ENTERPRISEPREMIUM |
Office 365 E5 Without Audio Conferencing | ENTERPRISEPREMIUM_NOPSTNCONF |
Microsoft 365 A5 For Faculty | M365EDU_A5_FACULTY |
Microsoft 365 E5 Developer (Without Windows And Audio Conferencing) | DEVELOPERPACK_E5 |
Microsoft 365 E5 Compliance | INFORMATION_PROTECTION_COMPLIANCE |
Microsoft 365 E5 Without Audio Conferencing | SPE_E5_NOPSTNCONF |
Power Bi Premium P1 | PBI_PREMIUM_P1_ADDON |
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 Students Use Benefit | M365EDU_A5_STUUSEBNFT |
Microsoft 365 A5 Without Audio Conferencing For Students Use Benefit | M365EDU_A5_NOPSTNCONF_STUUSEBNFT |
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 |
Office 365 A1 For Faculty | STANDARDWOFFPACK_FACULTY |
Office 365 A1 Plus For Faculty | STANDARDWOFFPACK_IW_FACULTY |
Office 365 A1 For Students | STANDARDWOFFPACK_STUDENT |
Office 365 A1 Plus For Students | STANDARDWOFFPACK_IW_STUDENT |
Office 365 A3 For Faculty | ENTERPRISEPACKPLUS_FACULTY |
Office 365 A3 For Students | ENTERPRISEPACKPLUS_STUDENT |
Office 365 E3 | ENTERPRISEPACK |
Office 365 E3_Usgov_Dod | ENTERPRISEPACK_USGOV_DOD |
Office 365 E3_Usgov_Gcchigh | ENTERPRISEPACK_USGOV_GCCHIGH |
Office 365 E4 | ENTERPRISEWITHSCAL |
Windows 365 Enterprise 4 Vcpu, 16 Gb, 256 Gb (Preview) | CPC_LVL_3 |
Dynamics 365 Finance | DYN365_FINANCE |
Power Apps Per App Plan | POWERAPPS_PER_APP |
Microsoft 365 A5 For Faculty | M365EDU_A5_FACULTY |
Microsoft 365 A5 For Students | M365EDU_A5_STUDENT |
Microsoft 365 E5 | SPE_E5 |
Microsoft 365 E5 Developer (Without Windows And Audio Conferencing) | DEVELOPERPACK_E5 |
Microsoft 365 E5 Compliance | INFORMATION_PROTECTION_COMPLIANCE |
Microsoft 365 E5 Without Audio Conferencing | SPE_E5_NOPSTNCONF |
Microsoft 365 F5 Security + Compliance Add-On | SPE_F5_SECCOMP |
Microsoft 365 Security And Compliance For Firstline Workers | M365_SECURITY_COMPLIANCE_FOR_FLW |
Office 365 A5 For Faculty | ENTERPRISEPREMIUM_FACULTY |
Office 365 A5 For Students | ENTERPRISEPREMIUM_STUDENT |
Office 365 Advanced Compliance | EQUIVIO_ANALYTICS |
Office 365 E5 | ENTERPRISEPREMIUM |
Office 365 E5 Without Audio Conferencing | ENTERPRISEPREMIUM_NOPSTNCONF |
Office 365 Small Business | LITEPACK |
Office 365 Small Business Premium | LITEPACK_P2 |
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 For Students | M365EDU_A5_STUDENT |
Microsoft 365 A5 For Students Use Benefit | M365EDU_A5_STUUSEBNFT |
Microsoft 365 A5 Without Audio Conferencing For Students Use Benefit | M365EDU_A5_NOPSTNCONF_STUUSEBNFT |
Microsoft 365 Apps For Business | O365_BUSINESS |
Microsoft 365 Apps For Business | SMB_BUSINESS |
Microsoft 365 Apps For Enterprise | OFFICESUBSCRIPTION |
Microsoft 365 Apps For Faculty | OFFICESUBSCRIPTION_FACULTY |
Microsoft 365 Business Basic | O365_BUSINESS_ESSENTIALS |
Microsoft 365 Business Basic | SMB_BUSINESS_ESSENTIALS |
Microsoft 365 Business Standard | O365_BUSINESS_PREMIUM |
Microsoft 365 Business Standard – Prepaid Legacy | SMB_BUSINESS_PREMIUM |
Microsoft 365 Business Premium | SPB |
Microsoft 365 E3 | SPE_E3 |
Microsoft 365 E3 – Unattended License | SPE_E3_RPA1 |
Microsoft 365 E5 | SPE_E5 |
Microsoft 365 E5 Developer (Without Windows And Audio Conferencing) | DEVELOPERPACK_E5 |
Microsoft 365 E5 Without Audio Conferencing | SPE_E5_NOPSTNCONF |
Microsoft 365 F3 | SPE_F1 |
Microsoft Teams Exploratory | TEAMS_EXPLORATORY |
Microsoft Teams Trial | MS_TEAMS_IW |
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 A3 For Faculty | ENTERPRISEPACKPLUS_FACULTY |
Office 365 A3 For Students | ENTERPRISEPACKPLUS_STUDENT |
Office 365 A5 For Faculty | ENTERPRISEPREMIUM_FACULTY |
Office 365 A5 For Students | ENTERPRISEPREMIUM_STUDENT |
Microsoft Teams Commercial Cloud | TEAMS_COMMERCIAL_TRIAL |
Office 365 E1 | STANDARDPACK |
Office 365 E2 | STANDARDWOFFPACK |
Office 365 E3 | ENTERPRISEPACK |
Office 365 E3 Developer | DEVELOPERPACK |
Office 365 E4 | ENTERPRISEWITHSCAL |
Office 365 E5 | ENTERPRISEPREMIUM |
Office 365 E5 Without Audio Conferencing | ENTERPRISEPREMIUM_NOPSTNCONF |
Office 365 F3 | DESKLESSPACK |
Office 365 Midsize Business | MIDSIZEPACK |
Office 365 Small Business | LITEPACK |
Office 365 Small Business Premium | LITEPACK_P2 |
Onedrive For Business (Plan 1) | WACONEDRIVESTANDARD |
Project Online Essentials | PROJECTESSENTIALS |
Project Online Premium Without Project Client | PROJECTONLINE_PLAN_1 |
Project Online With Project For Office 365 | PROJECTONLINE_PLAN_2 |
Microsoft Power Apps For Developer | POWERAPPS_DEV |
Common Area Phone For Gcc | MCOCAP_GOV |
Microsoft 365 G3 Gcc | M365_G3_GOV |
Office 365 G1 Gcc | STANDARDPACK_GOV |
Office 365 G3 Gcc | ENTERPRISEPACK_GOV |
Office 365 G5 Gcc | ENTERPRISEPREMIUM_GOV |
Office 365 E3 Developer | DEVELOPERPACK |
Microsoft 365 A5 For Faculty | M365EDU_A5_FACULTY |
Microsoft 365 E5 Developer (Without Windows And Audio Conferencing) | DEVELOPERPACK_E5 |
Microsoft 365 E5 Compliance | INFORMATION_PROTECTION_COMPLIANCE |
Microsoft 365 E5 Without Audio Conferencing | SPE_E5_NOPSTNCONF |
Microsoft 365 F5 Security + Compliance Add-On | SPE_F5_SECCOMP |
Microsoft 365 Security And Compliance For Firstline Workers | M365_SECURITY_COMPLIANCE_FOR_FLW |
Office 365 Advanced Compliance For Gcc | EQUIVIO_ANALYTICS_GOV |
Office 365 E5 | ENTERPRISEPREMIUM |
Office 365 G5 Gcc | ENTERPRISEPREMIUM_GOV |
Microsoft 365 A1 | M365EDU_A1 |
Windows Store For Business | WINDOWS_STORE |
Office 365 A1 For Faculty | STANDARDWOFFPACK_FACULTY |
Office 365 A1 Plus For Faculty | STANDARDWOFFPACK_IW_FACULTY |
Office 365 A1 For Students | STANDARDWOFFPACK_STUDENT |
Office 365 A1 Plus For Students | STANDARDWOFFPACK_IW_STUDENT |
Sensor Data Intelligence Additional Machines Add-In For Dynamics 365 Supply Chain Management | DYN365_IOT_INTELLIGENCE_ADDL_MACHINES |
Microsoft 365 E5 Developer (Without Windows And Audio Conferencing) | DEVELOPERPACK_E5 |
Microsoft 365 E5 Without Audio Conferencing | SPE_E5_NOPSTNCONF |
Office 365 E5 | ENTERPRISEPREMIUM |
Project Plan 1 | PROJECT_P1 |
Project Plan 1 (For Department) | PROJECT_PLAN1_DEPT |
Microsoft 365 G3 Gcc | M365_G3_GOV |
Office 365 G3 Gcc | ENTERPRISEPACK_GOV |
Windows 365 Business 2 Vcpu 4 Gb 64 Gb | CPC_B_2C_4RAM_64GB |
Ai Builder Capacity Add-On | CDSAICAPACITY |
Office 365 G5 Gcc | ENTERPRISEPREMIUM_GOV |
Dynamics 365 – Additional Non-Production Instance (Qualified Offer) | CRMTESTINSTANCE |
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 For Students | M365EDU_A5_STUDENT |
Microsoft 365 A5 For Students Use Benefit | M365EDU_A5_STUUSEBNFT |
Microsoft 365 A5 Without Audio Conferencing For Students Use Benefit | M365EDU_A5_NOPSTNCONF_STUUSEBNFT |
Office 365 A1 For Faculty | STANDARDWOFFPACK_FACULTY |
Office 365 A1 Plus For Faculty | STANDARDWOFFPACK_IW_FACULTY |
Office 365 A1 For Students | STANDARDWOFFPACK_STUDENT |
Office 365 A1 Plus For Students | STANDARDWOFFPACK_IW_STUDENT |
Office 365 A3 For Faculty | ENTERPRISEPACKPLUS_FACULTY |
Office 365 A3 For Students | ENTERPRISEPACKPLUS_STUDENT |
Office 365 A5 For Faculty | ENTERPRISEPREMIUM_FACULTY |
Office 365 A5 For Students | ENTERPRISEPREMIUM_STUDENT |
Dynamics 365 Unf Ops Plan Ent Edition | Dynamics_365_for_Operations |
Windows Store For Business Edu Faculty | WSFB_EDU_FACULTY |
Microsoft Stream | STREAM |
Office 365 G1 Gcc | STANDARDPACK_GOV |
Dynamics 365 Business Central Database Capacity | DYN365_BUSCENTRAL_DB_CAPACITY |
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 E3 | SPE_E3 |
Microsoft 365 E3 – Unattended License | SPE_E3_RPA1 |
Office 365 A3 For Faculty | ENTERPRISEPACKPLUS_FACULTY |
Office 365 A3 For Students | ENTERPRISEPACKPLUS_STUDENT |
Office 365 E3 | ENTERPRISEPACK |
Microsoft 365 A5 For Faculty | M365EDU_A5_FACULTY |
Microsoft 365 Business Premium | SPB |
Microsoft 365 E5 Developer (Without Windows And Audio Conferencing) | DEVELOPERPACK_E5 |
Microsoft 365 E5 Without Audio Conferencing | SPE_E5_NOPSTNCONF |
Office 365 E5 | ENTERPRISEPREMIUM |
Microsoft 365 F1 | M365_F1 |
Microsoft 365 F3 | SPE_F1 |
Microsoft 365 F1 | M365_F1_COMM |
Office 365 F3 | DESKLESSPACK |
Skype For Business Online (Plan 1) | MCOIMP |
Onedrive For Business (Plan 2) | WACONEDRIVEENTERPRISE |
Microsoft 365 A5 For Faculty | M365EDU_A5_FACULTY |
Microsoft 365 A5 For Students | M365EDU_A5_STUDENT |
Microsoft 365 E5 | SPE_E5 |
Microsoft 365 E5 Developer (Without Windows And Audio Conferencing) | DEVELOPERPACK_E5 |
Microsoft 365 E5 Compliance | INFORMATION_PROTECTION_COMPLIANCE |
Microsoft 365 E5 Without Audio Conferencing | SPE_E5_NOPSTNCONF |
Microsoft 365 F5 Security + Compliance Add-On | SPE_F5_SECCOMP |
Microsoft 365 Security And Compliance For Firstline Workers | M365_SECURITY_COMPLIANCE_FOR_FLW |
Office 365 A5 For Faculty | ENTERPRISEPREMIUM_FACULTY |
Office 365 A5 For Students | ENTERPRISEPREMIUM_STUDENT |
Office 365 Advanced Compliance | EQUIVIO_ANALYTICS |
Office 365 E5 | ENTERPRISEPREMIUM |
Microsoft 365 F3 Gcc | M365_F1_GOV |
Microsoft 365 A5 For Faculty | M365EDU_A5_FACULTY |
Microsoft 365 A5 For Students Use Benefit | M365EDU_A5_STUUSEBNFT |
Microsoft 365 A5 Without Audio Conferencing For Students Use Benefit | M365EDU_A5_NOPSTNCONF_STUUSEBNFT |
Microsoft 365 Business Premium | SPB |
Microsoft 365 E5 Developer (Without Windows And Audio Conferencing) | DEVELOPERPACK_E5 |
Microsoft 365 E5 Without Audio Conferencing | SPE_E5_NOPSTNCONF |
Office 365 E5 | ENTERPRISEPREMIUM |
Office 365 Midsize Business | MIDSIZEPACK |
Power Automate Unattended Rpa Add-On | POWERAUTOMATE_UNATTENDED_RPA |
Power Apps Per App Plan | POWERAPPS_PER_APP |
Microsoft Workplace Analytics | WORKPLACE_ANALYTICS |
Dynamics 365 Customer Engagement Plan | DYN365_ENTERPRISE_PLAN1 |
Dynamics 365 Unf Ops Plan Ent Edition | Dynamics_365_for_Operations |
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 Students Use Benefit | M365EDU_A5_STUUSEBNFT |
Microsoft 365 A5 Without Audio Conferencing For Students Use Benefit | M365EDU_A5_NOPSTNCONF_STUUSEBNFT |
Dynamics 365 For Supply Chain Management | DYN365_SCM |
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 For Students | M365EDU_A5_STUDENT |
Microsoft 365 A5 For Students Use Benefit | M365EDU_A5_STUUSEBNFT |
Microsoft 365 A5 Without Audio Conferencing For Students Use Benefit | M365EDU_A5_NOPSTNCONF_STUUSEBNFT |
Microsoft 365 Business Basic | O365_BUSINESS_ESSENTIALS |
Microsoft 365 Business Basic | SMB_BUSINESS_ESSENTIALS |
Microsoft 365 Business Standard | O365_BUSINESS_PREMIUM |
Microsoft 365 Business Standard – Prepaid Legacy | SMB_BUSINESS_PREMIUM |
Microsoft 365 Business Premium | SPB |
Microsoft 365 E3 | SPE_E3 |
Microsoft 365 E3 – Unattended License | SPE_E3_RPA1 |
Microsoft 365 E3_Usgov_Gcchigh | SPE_E3_USGOV_GCCHIGH |
Microsoft 365 E5 | SPE_E5 |
Microsoft 365 E5 Developer (Without Windows And Audio Conferencing) | DEVELOPERPACK_E5 |
Microsoft 365 E5 Without Audio Conferencing | SPE_E5_NOPSTNCONF |
Microsoft 365 F1 | M365_F1 |
Microsoft 365 F3 | SPE_F1 |
Microsoft 365 F1 | M365_F1_COMM |
Microsoft Teams Exploratory | TEAMS_EXPLORATORY |
Microsoft Teams Trial | MS_TEAMS_IW |
Office 365 A1 For Faculty | STANDARDWOFFPACK_FACULTY |
Office 365 A1 Plus For Faculty | STANDARDWOFFPACK_IW_FACULTY |
Office 365 A1 For Students | STANDARDWOFFPACK_STUDENT |
Office 365 A1 Plus For Students | STANDARDWOFFPACK_IW_STUDENT |
Office 365 A3 For Faculty | ENTERPRISEPACKPLUS_FACULTY |
Office 365 A3 For Students | ENTERPRISEPACKPLUS_STUDENT |
Office 365 A5 For Faculty | ENTERPRISEPREMIUM_FACULTY |
Office 365 A5 For Students | ENTERPRISEPREMIUM_STUDENT |
Microsoft Teams Commercial Cloud | TEAMS_COMMERCIAL_TRIAL |
Office 365 E1 | STANDARDPACK |
Office 365 E2 | STANDARDWOFFPACK |
Office 365 E3 | ENTERPRISEPACK |
Office 365 E3 Developer | DEVELOPERPACK |
Office 365 E3_Usgov_Gcchigh | ENTERPRISEPACK_USGOV_GCCHIGH |
Office 365 E4 | ENTERPRISEWITHSCAL |
Office 365 E5 | ENTERPRISEPREMIUM |
Office 365 E5 Without Audio Conferencing | ENTERPRISEPREMIUM_NOPSTNCONF |
Office 365 F3 | DESKLESSPACK |
Viva Topics | TOPIC_EXPERIENCES |
Microsoft 365 Business Standard | O365_BUSINESS_PREMIUM |
Microsoft 365 Business Premium | SPB |
Microsoft 365 E3 | SPE_E3 |
Microsoft 365 E5 Developer (Without Windows And Audio Conferencing) | DEVELOPERPACK_E5 |
Microsoft 365 E5 Without Audio Conferencing | SPE_E5_NOPSTNCONF |
Office 365 A1 For Faculty | STANDARDWOFFPACK_FACULTY |
Office 365 A1 Plus For Faculty | STANDARDWOFFPACK_IW_FACULTY |
Office 365 E3 | ENTERPRISEPACK |
Microsoft Threat Experts – Experts On Demand | EXPERTS_ON_DEMAND |
Microsoft 365 Business Standard | O365_BUSINESS_PREMIUM |
Microsoft 365 Business Premium | SPB |
Microsoft Teams Exploratory | TEAMS_EXPLORATORY |
Office 365 A1 For Faculty | STANDARDWOFFPACK_FACULTY |
Office 365 A1 Plus For Faculty | STANDARDWOFFPACK_IW_FACULTY |
Office 365 A1 For Students | STANDARDWOFFPACK_STUDENT |
Office 365 A1 Plus For Students | STANDARDWOFFPACK_IW_STUDENT |
Microsoft Teams Commercial Cloud | TEAMS_COMMERCIAL_TRIAL |
Office 365 G1 Gcc | STANDARDPACK_GOV |
Microsoft 365 F3 | SPE_F1 |
Office 365 F3 | DESKLESSPACK |
Office 365 G5 Gcc | ENTERPRISEPREMIUM_GOV |
Microsoft Teams (Free) | TEAMS_FREE |
Microsoft 365 F3 | SPE_F1 |
Office 365 F3 | DESKLESSPACK |
Teams Rooms Premium | MTR_PREM |
Office 365 Extra File Storage | SHAREPOINTSTORAGE |
Azure Information Protection Plan 1 | RIGHTSMANAGEMENT |
Enterprise Mobility + Security E3 | EMS |
Enterprise Mobility + Security E5 | EMSPREMIUM |
Enterprise Mobility + Security G3 Gcc | EMS_GOV |
Enterprise Mobility + Security G5 Gcc | EMSPREMIUM_GOV |
Exchange Enterprise Cal Services (Eop Dlp) | EOP_ENTERPRISE_PREMIUM |
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 A5 For Faculty | M365EDU_A5_FACULTY |
Microsoft 365 A5 For Students | M365EDU_A5_STUDENT |
Microsoft 365 A5 For Students Use Benefit | M365EDU_A5_STUUSEBNFT |
Microsoft 365 A5 Without Audio Conferencing For Students Use Benefit | M365EDU_A5_NOPSTNCONF_STUUSEBNFT |
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 Developer (Without Windows And Audio Conferencing) | DEVELOPERPACK_E5 |
Microsoft 365 E5 Without Audio Conferencing | SPE_E5_NOPSTNCONF |
Microsoft 365 F3 | SPE_F1 |
Microsoft 365 F1 | M365_F1_COMM |
Office 365 A1 For Faculty | STANDARDWOFFPACK_FACULTY |
Office 365 A1 Plus For Faculty | STANDARDWOFFPACK_IW_FACULTY |
Office 365 A1 For Students | STANDARDWOFFPACK_STUDENT |
Office 365 A1 Plus For Students | STANDARDWOFFPACK_IW_STUDENT |
Office 365 A3 For Faculty | ENTERPRISEPACKPLUS_FACULTY |
Office 365 A3 For Students | ENTERPRISEPACKPLUS_STUDENT |
Office 365 A5 For Faculty | ENTERPRISEPREMIUM_FACULTY |
Office 365 A5 For Students | ENTERPRISEPREMIUM_STUDENT |
Office 365 E3 | ENTERPRISEPACK |
Office 365 E3_Usgov_Dod | ENTERPRISEPACK_USGOV_DOD |
Office 365 E3_Usgov_Gcchigh | ENTERPRISEPACK_USGOV_GCCHIGH |
Office 365 E4 | ENTERPRISEWITHSCAL |
Office 365 E5 | ENTERPRISEPREMIUM |
Office 365 E5 Without Audio Conferencing | ENTERPRISEPREMIUM_NOPSTNCONF |
Power Apps Portals Login Capacity Add-On Tier 2 (10 Unit Min) For Government | POWERAPPS_PORTALS_LOGIN_T2_GCC |
Microsoft Teams Exploratory | TEAMS_EXPLORATORY |
Microsoft Teams Commercial Cloud | TEAMS_COMMERCIAL_TRIAL |
Microsoft Defender For Office 365 (Plan 2) | THREAT_INTELLIGENCE |
Microsoft 365 A5 For Faculty | M365EDU_A5_FACULTY |
Microsoft 365 A5 For Students Use Benefit | M365EDU_A5_STUUSEBNFT |
Microsoft 365 A5 Without Audio Conferencing For Students Use Benefit | M365EDU_A5_NOPSTNCONF_STUUSEBNFT |
Microsoft 365 E5 Developer (Without Windows And Audio Conferencing) | DEVELOPERPACK_E5 |
Microsoft 365 E5 Without Audio Conferencing | SPE_E5_NOPSTNCONF |
Microsoft 365 F5 Security Add-On | SPE_F5_SEC |
Microsoft 365 F5 Security + Compliance Add-On | SPE_F5_SECCOMP |
Microsoft 365 Security And Compliance For Firstline Workers | M365_SECURITY_COMPLIANCE_FOR_FLW |
Microsoft Defender For Office 365 (Plan 2) Gcc | THREAT_INTELLIGENCE_GOV |
Office 365 E5 | ENTERPRISEPREMIUM |
Office 365 G5 Gcc | ENTERPRISEPREMIUM_GOV |
Microsoft Dynamics Crm Online Basic | CRMPLAN2 |
Microsoft 365 A5 For Faculty | M365EDU_A5_FACULTY |
Microsoft 365 A5 For Students | M365EDU_A5_STUDENT |
Microsoft 365 A5 For Students Use Benefit | M365EDU_A5_STUUSEBNFT |
Microsoft 365 A5 Without Audio Conferencing For Students Use Benefit | M365EDU_A5_NOPSTNCONF_STUUSEBNFT |
Microsoft 365 E5 Developer (Without Windows And Audio Conferencing) | DEVELOPERPACK_E5 |
Microsoft 365 E5 Security | IDENTITY_THREAT_PROTECTION |
Microsoft 365 E5 Security For Ems E5 | IDENTITY_THREAT_PROTECTION_FOR_EMS_E5 |
Microsoft 365 E5 Without Audio Conferencing | SPE_E5_NOPSTNCONF |
Microsoft 365 E5 Suite Features | M365_E5_SUITE_COMPONENTS |
Microsoft 365 Business Premium | SPB |
Microsoft 365 F3 Gcc | M365_F1_GOV |
Dynamics 365 For Team Members Enterprise Edition | DYN365_ENTERPRISE_TEAM_MEMBERS |
Dynamics 365 Team Members | DYN365_TEAM_MEMBERS |
Enterprise Mobility + Security E3 | EMS |
Enterprise Mobility + Security E5 | EMSPREMIUM |
Enterprise Mobility + Security G3 Gcc | EMS_GOV |
Enterprise Mobility + Security G5 Gcc | EMSPREMIUM_GOV |
Intune | INTUNE_A |
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 For Students | M365EDU_A5_STUDENT |
Microsoft 365 A5 For Students Use Benefit | M365EDU_A5_STUUSEBNFT |
Microsoft 365 A5 Without Audio Conferencing For Students Use Benefit | M365EDU_A5_NOPSTNCONF_STUUSEBNFT |
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 Developer (Without Windows And Audio Conferencing) | DEVELOPERPACK_E5 |
Microsoft 365 E5 Without Audio Conferencing | SPE_E5_NOPSTNCONF |
Microsoft 365 F1 | M365_F1 |
Microsoft 365 F3 | SPE_F1 |
Microsoft 365 F3 Gcc | M365_F1_GOV |
Microsoft 365 F1 | M365_F1_COMM |
Microsoft 365 G3 Gcc | M365_G3_GOV |
Microsoft Intune Device | INTUNE_A_D |
Microsoft Intune Device For Government | INTUNE_A_D_GOV |
Microsoft Intune Smb | INTUNE_SMB |
Microsoft Teams Rooms Standard | MEETING_ROOM |
Microsoft Teams Rooms Standard Without Audio Conferencing | MEETING_ROOM_NOAUDIOCONF |
Teams Rooms Premium | MTR_PREM |
Office 365 A1 For Faculty | STANDARDWOFFPACK_FACULTY |
Office 365 A1 Plus For Faculty | STANDARDWOFFPACK_IW_FACULTY |
Office 365 A1 For Students | STANDARDWOFFPACK_STUDENT |
Office 365 A1 Plus For Students | STANDARDWOFFPACK_IW_STUDENT |
Office 365 G1 Gcc | STANDARDPACK_GOV |
Microsoft 365 A5 For Faculty | M365EDU_A5_FACULTY |
Microsoft 365 A5 For Students | M365EDU_A5_STUDENT |
Microsoft 365 E5 | SPE_E5 |
Microsoft 365 E5 Compliance | INFORMATION_PROTECTION_COMPLIANCE |
Microsoft 365 E5 Without Audio Conferencing | SPE_E5_NOPSTNCONF |
Microsoft 365 F5 Security + Compliance Add-On | SPE_F5_SECCOMP |
Microsoft 365 Security And Compliance For Firstline Workers | M365_SECURITY_COMPLIANCE_FOR_FLW |
Office 365 A1 For Faculty | STANDARDWOFFPACK_FACULTY |
Office 365 A1 Plus For Faculty | STANDARDWOFFPACK_IW_FACULTY |
Office 365 A1 For Students | STANDARDWOFFPACK_STUDENT |
Office 365 A1 Plus For Students | STANDARDWOFFPACK_IW_STUDENT |
Office 365 A5 For Faculty | ENTERPRISEPREMIUM_FACULTY |
Office 365 A5 For Students | ENTERPRISEPREMIUM_STUDENT |
Office 365 Advanced Compliance | EQUIVIO_ANALYTICS |
Office 365 Advanced Compliance For Gcc | EQUIVIO_ANALYTICS_GOV |
Office 365 E5 | ENTERPRISEPREMIUM |
Office 365 G5 Gcc | ENTERPRISEPREMIUM_GOV |
Azure Active Directory Basic | AAD_BASIC |
Power Automate Per User Plan | FLOW_PER_USER |
Power Automate Per User Plan Dept | FLOW_PER_USER_DEPT |
Dynamics 365 Customer Service Professional | DYN365_CUSTOMER_SERVICE_PRO |
Microsoft 365 G3 Gcc | M365_G3_GOV |
Office 365 G3 Gcc | ENTERPRISEPACK_GOV |
Power Apps Per App Plan | POWERAPPS_PER_APP |
Microsoft 365 Business Basic | O365_BUSINESS_ESSENTIALS |
Microsoft 365 Business Basic | SMB_BUSINESS_ESSENTIALS |
Microsoft 365 F3 | SPE_F1 |
Microsoft Teams Exploratory | TEAMS_EXPLORATORY |
Office 365 A1 For Faculty | STANDARDWOFFPACK_FACULTY |
Office 365 A1 For Students | STANDARDWOFFPACK_STUDENT |
Office 365 E1 | STANDARDPACK |
Office 365 F3 | DESKLESSPACK |
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 Students Use Benefit | M365EDU_A5_STUUSEBNFT |
Microsoft 365 A5 Without Audio Conferencing For Students Use Benefit | M365EDU_A5_NOPSTNCONF_STUUSEBNFT |
Microsoft 365 E3 | SPE_E3 |
Microsoft 365 E3 – Unattended License | SPE_E3_RPA1 |
Office 365 A1 For Faculty | STANDARDWOFFPACK_FACULTY |
Office 365 A1 Plus For Faculty | STANDARDWOFFPACK_IW_FACULTY |
Office 365 A1 For Students | STANDARDWOFFPACK_STUDENT |
Office 365 A1 Plus For Students | STANDARDWOFFPACK_IW_STUDENT |
Office 365 A3 For Faculty | ENTERPRISEPACKPLUS_FACULTY |
Office 365 A3 For Students | ENTERPRISEPACKPLUS_STUDENT |
Office 365 E3 | ENTERPRISEPACK |
Office 365 E3 Developer | DEVELOPERPACK |
Office 365 E4 | ENTERPRISEWITHSCAL |
Dynamics 365 Finance | DYN365_FINANCE |
Dynamics 365 Regulatory Service – Enterprise Edition Trial | DYN365_REGULATORY_SERVICE |
Dynamics 365 For Supply Chain Management | DYN365_SCM |
Microsoft 365 Business Basic | O365_BUSINESS_ESSENTIALS |
Microsoft 365 Business Basic | SMB_BUSINESS_ESSENTIALS |
Microsoft 365 Business Standard | O365_BUSINESS_PREMIUM |
Microsoft 365 Business Standard – Prepaid Legacy | SMB_BUSINESS_PREMIUM |
Microsoft 365 Business Premium | SPB |
Microsoft Teams Exploratory | TEAMS_EXPLORATORY |
Office 365 E1 | STANDARDPACK |
Office 365 E2 | STANDARDWOFFPACK |
Project Plan 1 | PROJECT_P1 |
Project Plan 1 (For Department) | PROJECT_PLAN1_DEPT |
Sharepoint Online (Plan 1) | SHAREPOINTSTANDARD |
Microsoft Power Apps For Developer | POWERAPPS_DEV |
Viva Topics | TOPIC_EXPERIENCES |
Power Automate Per Flow Plan | FLOW_BUSINESS_PROCESS |
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 Students Use Benefit | M365EDU_A5_STUUSEBNFT |
Microsoft 365 A5 Without Audio Conferencing For Students Use Benefit | M365EDU_A5_NOPSTNCONF_STUUSEBNFT |
Microsoft 365 E3 | SPE_E3 |
Microsoft 365 E3 – Unattended License | SPE_E3_RPA1 |
Office 365 A1 For Faculty | STANDARDWOFFPACK_FACULTY |
Office 365 A1 Plus For Faculty | STANDARDWOFFPACK_IW_FACULTY |
Office 365 A1 For Students | STANDARDWOFFPACK_STUDENT |
Office 365 A1 Plus For Students | STANDARDWOFFPACK_IW_STUDENT |
Office 365 A3 For Faculty | ENTERPRISEPACKPLUS_FACULTY |
Office 365 A3 For Students | ENTERPRISEPACKPLUS_STUDENT |
Office 365 E3 | ENTERPRISEPACK |
Office 365 E4 | ENTERPRISEWITHSCAL |
Microsoft 365 F3 | SPE_F1 |
Microsoft 365 F1 | M365_F1_COMM |
Office 365 F3 | DESKLESSPACK |
Microsoft Business Center | MICROSOFT_BUSINESS_CENTER |
Microsoft 365 A5 For Faculty | M365EDU_A5_FACULTY |
Microsoft 365 E5 Developer (Without Windows And Audio Conferencing) | DEVELOPERPACK_E5 |
Microsoft 365 E5 Compliance | INFORMATION_PROTECTION_COMPLIANCE |
Microsoft 365 E5 Without Audio Conferencing | SPE_E5_NOPSTNCONF |
Microsoft 365 Security And Compliance For Firstline Workers | M365_SECURITY_COMPLIANCE_FOR_FLW |
Office 365 E5 | ENTERPRISEPREMIUM |
Dynamics 365 Customer Service Enterprise Viral Trial | Dynamics_365_Customer_Service_Enterprise_viral_trial |
Power Virtual Agents Viral Trial | CCIBOTS_PRIVPREV_VIRAL |
Powerapps Plan 1 For Government | POWERAPPS_P1_GOV |
Dynamics 365 Operations – Device | Dynamics_365_for_Operations_Devices |
Power Virtual Agents Viral Trial | CCIBOTS_PRIVPREV_VIRAL |
Dynamics 365 Unf Ops Plan Ent Edition | Dynamics_365_for_Operations |
Office 365 Advanced Compliance For Gcc | EQUIVIO_ANALYTICS_GOV |
Office 365 G5 Gcc | ENTERPRISEPREMIUM_GOV |
Microsoft Power Apps Plan 2 Trial | POWERAPPS_VIRAL |
Microsoft 365 A5 For Faculty | M365EDU_A5_FACULTY |
Microsoft 365 E5 Developer (Without Windows And Audio Conferencing) | DEVELOPERPACK_E5 |
Microsoft 365 E5 Compliance | INFORMATION_PROTECTION_COMPLIANCE |
Microsoft 365 E5 Without Audio Conferencing | SPE_E5_NOPSTNCONF |
Microsoft 365 F5 Security + Compliance Add-On | SPE_F5_SECCOMP |
Microsoft 365 E5 Suite Features | M365_E5_SUITE_COMPONENTS |
Microsoft 365 Security And Compliance For Firstline Workers | M365_SECURITY_COMPLIANCE_FOR_FLW |
Dynamics 365 Business Central Additional Environment Addon | DYN365_BUSCENTRAL_ADD_ENV_ADDON |
Microsoft Stream Plan 2 | STREAM_P2 |
Office 365 Small Business | LITEPACK |
Office 365 Small Business Premium | LITEPACK_P2 |
Dynamics 365 For Team Members Enterprise Edition | DYN365_ENTERPRISE_TEAM_MEMBERS |
Dynamics 365 Team Members | DYN365_TEAM_MEMBERS |
Microsoft Power Apps Plan 2 Trial | POWERAPPS_VIRAL |
Microsoft 365 Business Premium | SPB |
Microsoft 365 E3 | SPE_E3 |
Microsoft 365 E3 – Unattended License | SPE_E3_RPA1 |
Dynamics 365 Customer Engagement Plan | DYN365_ENTERPRISE_PLAN1 |
Dynamics 365 For Sales And Customer Service Enterprise Edition | DYN365_ENTERPRISE_SALES_CUSTOMERSERVICE |
Microsoft 365 A5 For Faculty | M365EDU_A5_FACULTY |
Microsoft 365 E5 Developer (Without Windows And Audio Conferencing) | DEVELOPERPACK_E5 |
Microsoft 365 E5 Compliance | INFORMATION_PROTECTION_COMPLIANCE |
Microsoft 365 E5 Without Audio Conferencing | SPE_E5_NOPSTNCONF |
Microsoft 365 F5 Security + Compliance Add-On | SPE_F5_SECCOMP |
Microsoft 365 E5 Suite Features | M365_E5_SUITE_COMPONENTS |
Microsoft 365 F3 Gcc | M365_F1_GOV |
Ms Imagine Academy | IT_ACADEMY_AD |
Dynamics 365 Operations – Sandbox Tier 2:Standard Acceptance Testing | Dynamics_365_for_Operations_Sandbox_Tier2_SKU |
Microsoft Power Apps For Developer | POWERAPPS_DEV |
Microsoft 365 A5 For Faculty | M365EDU_A5_FACULTY |
Microsoft 365 A5 For Students Use Benefit | M365EDU_A5_STUUSEBNFT |
Microsoft 365 A5 Without Audio Conferencing For Students Use Benefit | M365EDU_A5_NOPSTNCONF_STUUSEBNFT |
Microsoft 365 E5 Developer (Without Windows And Audio Conferencing) | DEVELOPERPACK_E5 |
Microsoft 365 E5 Compliance | INFORMATION_PROTECTION_COMPLIANCE |
Microsoft 365 E5 Without Audio Conferencing | SPE_E5_NOPSTNCONF |
Microsoft 365 F5 Security + Compliance Add-On | SPE_F5_SECCOMP |
Microsoft 365 E5 Suite Features | M365_E5_SUITE_COMPONENTS |
Microsoft 365 G3 Gcc | M365_G3_GOV |
Microsoft 365 Security And Compliance For Firstline Workers | M365_SECURITY_COMPLIANCE_FOR_FLW |
Office 365 Advanced Compliance For Gcc | EQUIVIO_ANALYTICS_GOV |
Office 365 E5 | ENTERPRISEPREMIUM |
Office 365 G3 Gcc | ENTERPRISEPACK_GOV |
Office 365 G5 Gcc | ENTERPRISEPREMIUM_GOV |
Exchange Online Archiving For Exchange Server | EXCHANGEARCHIVE |
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 For Students | M365EDU_A5_STUDENT |
Microsoft 365 A5 For Students Use Benefit | M365EDU_A5_STUUSEBNFT |
Microsoft 365 A5 Without Audio Conferencing For Students Use Benefit | M365EDU_A5_NOPSTNCONF_STUUSEBNFT |
Visio Plan 1 | VISIO_PLAN1_DEPT |
Visio Plan 2 | VISIO_PLAN2_DEPT |
Visio Online Plan 1 | VISIOONLINE_PLAN1 |
Visio Online Plan 2 | VISIOCLIENT |
Common Area Phone For Gcc | MCOCAP_GOV |
Microsoft 365 Phone System For Gcc | MCOEV_GOV |
Office 365 G5 Gcc | ENTERPRISEPREMIUM_GOV |
Dynamics 365 For Sales Professional Trial | D365_SALES_PRO_IW |
Microsoft 365 Business Standard | O365_BUSINESS_PREMIUM |
Microsoft 365 Business Premium | SPB |
Microsoft 365 E3 | SPE_E3 |
Microsoft 365 E5 Developer (Without Windows And Audio Conferencing) | DEVELOPERPACK_E5 |
Microsoft 365 E5 Without Audio Conferencing | SPE_E5_NOPSTNCONF |
Office 365 A1 For Faculty | STANDARDWOFFPACK_FACULTY |
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 Sales Premium Viral Trial | Dynamics_365_Sales_Premium_Viral_Trial |
Common Data Service Log Capacity | CDS_LOG_CAPACITY |
Power Apps Per User Plan | POWERAPPS_PER_USER |
Powerapps Per App Baseline Access | POWERAPPS_PER_APP_IW |
Microsoft 365 Business Premium | SPB |
Microsoft Intune Smb | INTUNE_SMB |
Microsoft 365 G3 Gcc | M365_G3_GOV |
Office 365 G3 Gcc | ENTERPRISEPACK_GOV |
Office 365 G5 Gcc | ENTERPRISEPREMIUM_GOV |
Microsoft 365 A5 For Faculty | M365EDU_A5_FACULTY |
Microsoft 365 Business Premium | SPB |
Microsoft 365 E5 Developer (Without Windows And Audio Conferencing) | DEVELOPERPACK_E5 |
Microsoft 365 E5 Without Audio Conferencing | SPE_E5_NOPSTNCONF |
Office 365 E5 | ENTERPRISEPREMIUM |
Microsoft 365 F3 | SPE_F1 |
Office 365 F3 | DESKLESSPACK |
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 For Students | M365EDU_A5_STUDENT |
Microsoft 365 A5 For Students Use Benefit | M365EDU_A5_STUUSEBNFT |
Microsoft 365 A5 Without Audio Conferencing For Students Use Benefit | M365EDU_A5_NOPSTNCONF_STUUSEBNFT |
Microsoft 365 Apps For Faculty | OFFICESUBSCRIPTION_FACULTY |
Office 365 A1 For Faculty | STANDARDWOFFPACK_FACULTY |
Office 365 A1 Plus For Faculty | STANDARDWOFFPACK_IW_FACULTY |
Office 365 A1 For Students | STANDARDWOFFPACK_STUDENT |
Office 365 A1 Plus For Students | STANDARDWOFFPACK_IW_STUDENT |
Office 365 A3 For Faculty | ENTERPRISEPACKPLUS_FACULTY |
Office 365 A3 For Students | ENTERPRISEPACKPLUS_STUDENT |
Office 365 A5 For Faculty | ENTERPRISEPREMIUM_FACULTY |
Office 365 A5 For Students | ENTERPRISEPREMIUM_STUDENT |
Microsoft 365 F3 | SPE_F1 |
Dynamics 365 Customer Voice Trial | FORMS_PRO |
Microsoft 365 E5 | SPE_E5 |
Microsoft 365 E5 Developer (Without Windows And Audio Conferencing) | DEVELOPERPACK_E5 |
Microsoft 365 E5 Without Audio Conferencing | SPE_E5_NOPSTNCONF |
Office 365 E3 Developer | DEVELOPERPACK |
Office 365 E5 | ENTERPRISEPREMIUM |
Office 365 E5 Without Audio Conferencing | ENTERPRISEPREMIUM_NOPSTNCONF |
Microsoft 365 A5 For Faculty | M365EDU_A5_FACULTY |
Microsoft 365 E5 Developer (Without Windows And Audio Conferencing) | DEVELOPERPACK_E5 |
Microsoft 365 E5 Compliance | INFORMATION_PROTECTION_COMPLIANCE |
Microsoft 365 E5 Without Audio Conferencing | SPE_E5_NOPSTNCONF |
Microsoft 365 F5 Security + Compliance Add-On | SPE_F5_SECCOMP |
Office 365 A5 For Faculty | ENTERPRISEPREMIUM_FACULTY |
Office 365 A5 For Students | ENTERPRISEPREMIUM_STUDENT |
Office 365 Advanced Compliance For Gcc | EQUIVIO_ANALYTICS_GOV |
Office 365 E5 | ENTERPRISEPREMIUM |
Office 365 G5 Gcc | ENTERPRISEPREMIUM_GOV |
Dynamics 365 Talent: Attract | DYN365_CUSTOMER_INSIGHTS_VIRAL |
Microsoft Dynamics Ax7 User Trial | AX7_USER_TRIAL |
Project Plan 3 For Gcc | PROJECTPROFESSIONAL_GOV |
Project Plan 5 For Gcc | PROJECTPREMIUM_GOV |
Office 365 Extra File Storage For Gcc | SHAREPOINTSTORAGE_GOV |
Powerapps And Logic Flows | POWERAPPS_INDIVIDUAL_USER |
Dynamics 365 Customer Voice Additional Responses | DYN365_CUSTOMER_VOICE_ADDON |
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 For Students | M365EDU_A5_STUDENT |
Microsoft 365 A5 For Students Use Benefit | M365EDU_A5_STUUSEBNFT |
Microsoft 365 A5 Without Audio Conferencing For Students Use Benefit | M365EDU_A5_NOPSTNCONF_STUUSEBNFT |
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_VDA_E3 |
Windows 10 Enterprise E5 | WIN10_VDA_E5 |
Windows 10 Enterprise E5 Commercial (Gcc Compatible) | WINE5_GCC_COMPAT |
Dynamics 365 Customer Engagement Plan | DYN365_ENTERPRISE_PLAN1 |
Dynamics 365 Customer Service Professional | DYN365_CUSTOMER_SERVICE_PRO |
Dynamics 365 For Customer Service Enterprise Edition | DYN365_ENTERPRISE_CUSTOMER_SERVICE |
Dynamics 365 For Sales And Customer Service Enterprise Edition | DYN365_ENTERPRISE_SALES_CUSTOMERSERVICE |
Dynamics 365 For Sales Enterprise Edition | DYN365_ENTERPRISE_SALES |
Dynamics 365 For Sales Professional | D365_SALES_PRO |
Dynamics 365 For Team Members Enterprise Edition | DYN365_ENTERPRISE_TEAM_MEMBERS |
Dynamics 365 Team Members | DYN365_TEAM_MEMBERS |
Microsoft 365 Apps For Business | O365_BUSINESS |
Microsoft 365 Apps For Business | SMB_BUSINESS |
Microsoft 365 Apps For Enterprise | OFFICESUBSCRIPTION |
Microsoft 365 Business Basic | O365_BUSINESS_ESSENTIALS |
Microsoft 365 Business Basic | SMB_BUSINESS_ESSENTIALS |
Microsoft 365 Business Standard | O365_BUSINESS_PREMIUM |
Microsoft 365 Business Standard – Prepaid Legacy | SMB_BUSINESS_PREMIUM |
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 Developer (Without Windows And Audio Conferencing) | DEVELOPERPACK_E5 |
Microsoft 365 E5 Without Audio Conferencing | SPE_E5_NOPSTNCONF |
Microsoft 365 F3 | SPE_F1 |
Microsoft Teams Exploratory | TEAMS_EXPLORATORY |
Microsoft Teams Trial | MS_TEAMS_IW |
Microsoft Teams Commercial Cloud | TEAMS_COMMERCIAL_TRIAL |
Office 365 E1 | STANDARDPACK |
Office 365 E2 | STANDARDWOFFPACK |
Office 365 E3 | ENTERPRISEPACK |
Office 365 E3_Usgov_Dod | ENTERPRISEPACK_USGOV_DOD |
Office 365 E3_Usgov_Gcchigh | ENTERPRISEPACK_USGOV_GCCHIGH |
Office 365 E4 | ENTERPRISEWITHSCAL |
Office 365 E5 | ENTERPRISEPREMIUM |
Office 365 E5 Without Audio Conferencing | ENTERPRISEPREMIUM_NOPSTNCONF |
Office 365 F3 | DESKLESSPACK |
Office 365 Midsize Business | MIDSIZEPACK |
Onedrive For Business (Plan 1) | WACONEDRIVESTANDARD |
Onedrive For Business (Plan 2) | WACONEDRIVEENTERPRISE |
Project Online Essentials | PROJECTESSENTIALS |
Project Online Premium | PROJECTPREMIUM |
Project Online Premium Without Project Client | PROJECTONLINE_PLAN_1 |
Project Online With Project For Office 365 | PROJECTONLINE_PLAN_2 |
Project Plan 3 | PROJECTPROFESSIONAL |
Project Plan 3 (For Department) | PROJECT_PLAN3_DEPT |
Dynamics 365 Finance | DYN365_FINANCE |
Dynamics 365 Customer Voice Usl | Forms_Pro_USL |
Exchange Online (Plan 1) For Gcc | EXCHANGESTANDARD_GOV |
Office 365 G1 Gcc | STANDARDPACK_GOV |
Power Apps Per User Plan | POWERAPPS_PER_USER |
Microsoft 365 Phone System For Small And Medium Business | MCOEVSMB_1 |
Dynamics 365 Talent: Attract | DYN365_CUSTOMER_INSIGHTS_VIRAL |
Azure Active Directory Premium P2 | AAD_PREMIUM_P2 |
Enterprise Mobility + Security E5 | EMSPREMIUM |
Enterprise Mobility + Security G5 Gcc | EMSPREMIUM_GOV |
Microsoft 365 A5 For Faculty | M365EDU_A5_FACULTY |
Microsoft 365 A5 For Students | M365EDU_A5_STUDENT |
Microsoft 365 A5 For Students Use Benefit | M365EDU_A5_STUUSEBNFT |
Microsoft 365 A5 Without Audio Conferencing For Students Use Benefit | M365EDU_A5_NOPSTNCONF_STUUSEBNFT |
Microsoft 365 E5 | SPE_E5 |
Microsoft 365 E5 Developer (Without Windows And Audio Conferencing) | DEVELOPERPACK_E5 |
Microsoft 365 E5 Security | IDENTITY_THREAT_PROTECTION |
Microsoft 365 E5 Without Audio Conferencing | SPE_E5_NOPSTNCONF |
Microsoft 365 F5 Security Add-On | SPE_F5_SEC |
Microsoft 365 F5 Security + Compliance Add-On | SPE_F5_SECCOMP |
Microsoft 365 Security And Compliance For Firstline Workers | M365_SECURITY_COMPLIANCE_FOR_FLW |
Dynamics 365 – Additional Production Instance (Qualified Offer) | CRMINSTANCE |
Microsoft 365 A5 For Faculty | M365EDU_A5_FACULTY |
Microsoft 365 A5 For Students | M365EDU_A5_STUDENT |
Microsoft 365 E5 | SPE_E5 |
Microsoft 365 E5 Developer (Without Windows And Audio Conferencing) | DEVELOPERPACK_E5 |
Microsoft 365 E5 Compliance | INFORMATION_PROTECTION_COMPLIANCE |
Microsoft 365 E5 Without Audio Conferencing | SPE_E5_NOPSTNCONF |
Microsoft 365 F5 Security + Compliance Add-On | SPE_F5_SECCOMP |
Microsoft 365 Security And Compliance For Firstline Workers | M365_SECURITY_COMPLIANCE_FOR_FLW |
Office 365 A5 For Faculty | ENTERPRISEPREMIUM_FACULTY |
Office 365 A5 For Students | ENTERPRISEPREMIUM_STUDENT |
Office 365 Advanced Compliance | EQUIVIO_ANALYTICS |
Office 365 Advanced Compliance For Gcc | EQUIVIO_ANALYTICS_GOV |
Office 365 E5 | ENTERPRISEPREMIUM |
Office 365 G5 Gcc | ENTERPRISEPREMIUM_GOV |
Exchange Online (Plan 2) | EXCHANGEENTERPRISE |
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 For Students | M365EDU_A5_STUDENT |
Microsoft 365 A5 For Students Use Benefit | M365EDU_A5_STUUSEBNFT |
Microsoft 365 A5 Without Audio Conferencing For Students Use Benefit | M365EDU_A5_NOPSTNCONF_STUUSEBNFT |
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 Developer (Without Windows And Audio Conferencing) | DEVELOPERPACK_E5 |
Microsoft 365 E5 Without Audio Conferencing | SPE_E5_NOPSTNCONF |
Office 365 A3 For Faculty | ENTERPRISEPACKPLUS_FACULTY |
Office 365 A3 For Students | ENTERPRISEPACKPLUS_STUDENT |
Office 365 A5 For Faculty | ENTERPRISEPREMIUM_FACULTY |
Office 365 A5 For Students | ENTERPRISEPREMIUM_STUDENT |
Office 365 E3 | ENTERPRISEPACK |
Office 365 E3 Developer | DEVELOPERPACK |
Office 365 E3_Usgov_Dod | ENTERPRISEPACK_USGOV_DOD |
Office 365 E3_Usgov_Gcchigh | ENTERPRISEPACK_USGOV_GCCHIGH |
Office 365 E4 | ENTERPRISEWITHSCAL |
Office 365 E5 | ENTERPRISEPREMIUM |
Office 365 E5 Without Audio Conferencing | ENTERPRISEPREMIUM_NOPSTNCONF |
Sharepoint Syntex | Intelligent_Content_Services |
Microsoft 365 F3 | SPE_F1 |
Office 365 F3 | DESKLESSPACK |
Microsoft Defender For Office 365 (Plan 2) | THREAT_INTELLIGENCE |
Microsoft 365 A5 For Faculty | M365EDU_A5_FACULTY |
Microsoft 365 A5 For Students | M365EDU_A5_STUDENT |
Microsoft 365 A5 For Students Use Benefit | M365EDU_A5_STUUSEBNFT |
Microsoft 365 A5 Without Audio Conferencing For Students Use Benefit | M365EDU_A5_NOPSTNCONF_STUUSEBNFT |
Microsoft 365 Business Premium | SPB |
Microsoft 365 E5 | SPE_E5 |
Microsoft 365 E5 Developer (Without Windows And Audio Conferencing) | DEVELOPERPACK_E5 |
Microsoft 365 E5 Security | IDENTITY_THREAT_PROTECTION |
Microsoft 365 E5 Security For Ems E5 | IDENTITY_THREAT_PROTECTION_FOR_EMS_E5 |
Microsoft 365 E5 Without Audio Conferencing | SPE_E5_NOPSTNCONF |
Microsoft 365 F5 Security Add-On | SPE_F5_SEC |
Microsoft 365 F5 Security + Compliance Add-On | SPE_F5_SECCOMP |
Microsoft 365 Security And Compliance For Firstline Workers | M365_SECURITY_COMPLIANCE_FOR_FLW |
Office 365 A5 For Faculty | ENTERPRISEPREMIUM_FACULTY |
Office 365 A5 For Students | ENTERPRISEPREMIUM_STUDENT |
Microsoft Defender For Office 365 (Plan 1) | ATP_ENTERPRISE |
Office 365 E5 | ENTERPRISEPREMIUM |
Dynamics 365 For Team Members Enterprise Edition | DYN365_ENTERPRISE_TEAM_MEMBERS |
Dynamics 365 Team Members | DYN365_TEAM_MEMBERS |
Microsoft 365 Phone System – Virtual User | PHONESYSTEM_VIRTUALUSER |
Microsoft Workplace Analytics | WORKPLACE_ANALYTICS |
Office 365 G1 Gcc | STANDARDPACK_GOV |
Microsoft 365 Audio Conferencing For Gcc | MCOMEETADV_GOC |
Microsoft 365 Audio Conferencing For Gcc | MCOMEETADV_GOV |
Office 365 G5 Gcc | ENTERPRISEPREMIUM_GOV |
Dynamics 365 For Team Members Enterprise Edition | DYN365_ENTERPRISE_TEAM_MEMBERS |
Dynamics 365 Team Members | DYN365_TEAM_MEMBERS |
Power Virtual Agent | VIRTUAL_AGENT_BASE |
Dynamics 365 Operations – Sandbox Tier 4:Standard Performance Testing | Dynamics_365_for_Operations_Sandbox_Tier4_SKU |
Dynamics 365 For Talent | SKU_Dynamics_365_for_HCM_Trial |
Dynamics 365 Talent: Attract | Dynamics_365_Hiring_SKU |
Dynamics 365 Unf Ops Plan Ent Edition | Dynamics_365_for_Operations |
Visio Plan 2 For Gcc | VISIOCLIENT_GOV |
Dynamics 365 For Sales Professional | D365_SALES_PRO |
Microsoft Dynamics Crm Online | CRMSTANDARD |
Office 365 G1 Gcc | STANDARDPACK_GOV |
Project Plan 3 | PROJECTPROFESSIONAL |
Project Plan 3 (For Department) | PROJECT_PLAN3_DEPT |
Dynamics 365 Customer Engagement Plan | DYN365_ENTERPRISE_PLAN1 |
Project For Office 365 | PROJECTCLIENT |
Project Online Premium | PROJECTPREMIUM |
Project Online With Project For Office 365 | PROJECTONLINE_PLAN_2 |
Project Plan 3 | PROJECTPROFESSIONAL |
Project Plan 3 (For Department) | PROJECT_PLAN3_DEPT |
Power Bi | POWER_BI_INDIVIDUAL_USER |
Power Bi For Office 365 Add-On | POWER_BI_ADDON |
Office 365 Midsize Business | MIDSIZEPACK |
Sharepoint Syntex | Intelligent_Content_Services |
Microsoft 365 E3_Usgov_Dod | SPE_E3_USGOV_DOD |
Office 365 E3_Usgov_Dod | ENTERPRISEPACK_USGOV_DOD |
Project Online Essentials For Gcc | PROJECTESSENTIALS_GOV |
Dynamics 365 Talent: Attract | DYN365_CUSTOMER_INSIGHTS_VIRAL |
Dynamics 365 Customer Engagement Plan | DYN365_ENTERPRISE_PLAN1 |
Project Online Premium | PROJECTPREMIUM |
Project Online Premium Without Project Client | PROJECTONLINE_PLAN_1 |
Project Online With Project For Office 365 | PROJECTONLINE_PLAN_2 |
Project Plan 3 | PROJECTPROFESSIONAL |
Project Plan 3 (For Department) | PROJECT_PLAN3_DEPT |
Microsoft Workplace Analytics | WORKPLACE_ANALYTICS |
Office 365 Service Plan Names
The same goes for Office 365 service plan names. For example, to see if Office 365 Advanced Threat Protection is included in a licensing plan, you need to look for “THREAT_INTELLIGENCE”, etc.
You can see the complete list of Office 365 service plan names here:
Office 365 Service Plan Names
Service_Plans_Included_Friendly_Names | Service_Plan_Name |
---|---|
Exchange Foundation | EXCHANGE_S_FOUNDATION |
Sway | SWAY |
Power Automate For Project P1 | Power_Automate_For_Project_P1 |
Power Apps (Plan 2) | POWERAPPS_P2 |
Power Automate For Customer Service Pro | FLOW_CUSTOMER_SERVICE_PRO |
Microsoft Social Engagement Enterprise | NBENTERPRISE |
Sharepoint Online (Plan 2) | NBENTERPRISE |
Microsoft Social Engagement – Service Discontinuation | NBENTERPRISE |
Power Virtual Agents For Office 365 P2 | POWER_VIRTUAL_AGENTS_O365_P2 |
Power Virtual Agents For Office 365 | POWER_VIRTUAL_AGENTS_O365_P2 |
Dynamics 365 For Talent: Onboard | Dynamics_365_Talent_Onboard |
Dynamics 365 P1 Trial For Information Workers | DYN365_ENTERPRISE_P1_IW |
Common Data Service – O365 P2 Gcc | DYN365_CDS_O365_P2_GCC |
Microsoft 365 Phone System Virtual User For Government | MCOEV_VIRTUALUSER_GOV |
Dynamics 365 For Sales Pro Attach | D365_SALES_PRO_ATTACH |
Power Virtual Agents For Office 365 P1 | POWER_VIRTUAL_AGENTS_O365_P1 |
Power Automate For Office 365 | FLOW_O365_P3 |
Flow For Office 365 | FLOW_O365_P3 |
Common Data Service For Remote Assist | CDS_REMOTE_ASSIST |
Microsoft Kaizala | KAIZALA_STANDALONE |
Office 365 Business | OFFICE_BUSINESS |
Microsoft 365 Apps For Business | OFFICE_BUSINESS |
Project For Project Operations | PROJECT_FOR_PROJECT_OPERATIONS |
Common Data Service For Virtual Agent Base | CDS_VIRTUAL_AGENT_BASE |
Power Apps For Office 365 For Government | POWERAPPS_O365_P2_GOV |
Sharepoint (Plan 1) For Education | SHAREPOINTSTANDARD_EDU |
Power Apps For Dynamics 365 | POWERAPPS_DYN_P2 |
Powerapps For Dynamics 365 | POWERAPPS_DYN_P2 |
Dynamics 365 Guides | GUIDES |
Logic Flows | POWERFLOWSFREE |
Power Bi Premium Per User | BI_AZURE_P3 |
App Connect | SPZA |
Power Automate Unattended Rpa Add-On | POWER_AUTOMATE_UNATTENDED_RPA |
Powerapps_O365_P3_Gov | POWERAPPS_O365_P3_GOV |
Common Data Service Power Apps Portals Login Capacity For Gcc | CDS_POWERAPPS_PORTALS_LOGIN_GCC |
Flow For Office 365 | FLOW_O365_P1 |
Power Automate For Office 365 | FLOW_O365_P1 |
Skype For Business Online (Plan 2) | MCOSTANDARD |
Exchange Essentials | EXCHANGE_S_ESSENTIALS |
Dynamics 365 For Supply Chain Management | D365_SCM |
Project Online Essentials | PROJECT_ESSENTIALS |
Powerapps For Dynamics 365 | PROJECT_ESSENTIALS |
Common Data Service | DYN365_CDS_GUIDES |
Onedrivestandard | ONEDRIVESTANDARD |
Onedrive For Business (Plan 1) | ONEDRIVESTANDARD |
Dynamics 365 Customer Service Insights For Ce Plan | D365_CSI_EMBED_CE |
Microsoft Defender For Identity | ATA |
Azure Advanced Threat Protection | ATA |
Microsoft Stream For O365 For Government (E1) | STREAM_O365_E1_GOV |
Sharepoint Plan 2G | SHAREPOINTENTERPRISE_GOV |
Sharepointenterprise_Gov | SHAREPOINTENTERPRISE_GOV |
Microsoft Forms (Plan E1) | FORMS_PLAN_E1 |
Mde_Securitymanagement | Intune_Defender |
Dynamics 365 Business Central External Accountant | DYN365_FINANCIALS_ACCOUNTANT |
Exchange Online Archiving For Exchange Online | EXCHANGE_S_ARCHIVE_ADDON |
Exchange Online Archiving | EXCHANGE_S_ARCHIVE_ADDON |
Common Data Service – Viral | DYN365_CDS_VIRAL |
Dynamics 365 Customer Voice | FORMS_PRO |
Dynamics 365 Project Operations Cds | D365_ProjectOperationsCDS |
Microsoft Bookings | MICROSOFTBOOKINGS |
Microsoftbookings | MICROSOFTBOOKINGS |
Azure Information Protection Premium P1 For Gcc | RMS_S_PREMIUM_GOV |
Azure Rights Management Premium For Government | RMS_S_PREMIUM_GOV |
Azure Active Directory Basic For Education | AAD_BASIC_EDU |
Azure Active Directory Basic For Edu | AAD_BASIC_EDU |
Microsoft Dynamics Crm Online – Portal Add-On | CRM_ONLINE_PORTAL |
Windows 365 Business 4 Vcpu 16 Gb 128 Gb | CPC_B_4C_16RAM_128GB |
Common Data Service For Apps Database Capacity For Government | CDS_DB_CAPACITY_GOV |
Flow For Dynamics 365 | FLOW_DYN_TEAM |
Power Bi (Free) | BI_AZURE_P0 |
Yammer For Academic | YAMMER_EDU |
Exchange_Analytics_Gov | EXCHANGE_ANALYTICS_GOV |
Dynamics 365 Field Service Enterprise Vtrial | DYN365_FS_ENTERPRISE_VIRAL_TRIAL |
Microsoft Power Bi Reporting And Analytics Plan 1 | BI_AZURE_P1 |
Windows 10/11 Enterprise (Original) | WIN10_PRO_ENT_SUB |
Windows 10 Enterprise (Original) | WIN10_PRO_ENT_SUB |
Windows 10 Enterprise | WIN10_PRO_ENT_SUB |
Windows 365 Enterprise 2 Vcpu 4 Gb 64 Gb | CPC_E_2C_4GB_64GB |
Forms For Government (Plan E3) | FORMS_GOV_E3 |
Skype For Business Online (Plan 3) | MCOVOICECONF |
Office Shared Computer Activation | OFFICE_SHARED_COMPUTER_ACTIVATION |
Microsoft Forms (Plan E3) | FORMS_PLAN_E3 |
Common Data Service – O365 P3 | DYN365_CDS_O365_P3 |
Common Data Service | DYN365_CDS_O365_P3 |
Common Data Service – O365 F1 | DYN365_CDS_O365_F1_GCC |
Microsoft Defender For Endpoint Plan 1 | MDE_LITE |
Information Protection And Governance Analytics – Standard | ContentExplorer_Standard |
Contentexplorer_Standard | ContentExplorer_Standard |
Visio Web App | VISIOONLINE |
Microsoft Stream For O365 For Government (E3) | STREAM_O365_E3_GOV |
Microsoft Power Videos Basic | POWERVIDEOSFREE |
Dynamics 365 For Operations Devices | Dynamics_365_for_OperationsDevices |
Pad For Windows | POWERAUTOMATE_DESKTOP_FOR_WIN |
Common Data Service | DYN365_CDS_DYN_APPS |
Dynamics 365 For Sales | DYN365_ENTERPRISE_SALES |
Microsoft Cloud App Security | ADALLOM_S_STANDALONE |
Microsoft Defender For Cloud Apps | ADALLOM_S_STANDALONE |
Microsoft 365 Advanced Auditing | M365_ADVANCED_AUDITING |
M365_Advanced_Auditing | M365_ADVANCED_AUDITING |
Dynamics 365 For Talent: Onboard | Dynamics_365_Onboarding_Free_PLAN |
Microsoft Teams For Government | TEAMS_GOV |
Teams_Gov | TEAMS_GOV |
Common Data Service For Sharepoint Syntex | CDS_O365_E5_KM |
Project For Office (Plan E3) | PROJECT_O365_P2 |
Microsoft Azure Rights Management Service | RMS_S_BASIC |
Exchange Online Protection | EOP_ENTERPRISE |
Dynamics 365 Ai For Market Insights – Free | SOCIAL_ENGAGEMENT_APP_USER |
Insights By Myanalytics | MYANALYTICS_P2 |
Dynamics 365 Customer Service Insights Vtrial | DYNB365_CSI_VIRAL_TRIAL |
Microsoft Dynamics Marketing Sales Collaboration – Eligibility Criteria Apply | MDM_SALES_COLLABORATION |
Microsoft Myanalytics (Full) | EXCHANGE_ANALYTICS |
Exchange_Analytics | EXCHANGE_ANALYTICS |
Powerapps Per App Baseline Access | POWERAPPS_PER_APP_IWTRIAL |
Cds Powerapps Portals Page View Capacity Add-On For Gcc | CDS_POWERAPPS_PORTALS_PAGEVIEW_GCC |
Common Data Service For Apps Database Capacity | CDS_DB_CAPACITY |
Common Data Service | DYN365_CDS_FORMS_PRO |
Whiteboard (Firstline) | WHITEBOARD_FIRSTLINE1 |
Common Data Service For Government | DYN365_CDS_P2_GOV |
Power Automate Rpa Attended | POWER_AUTOMATE_ATTENDED_RPA |
Dynamics 365 Marketing | DYN365_BUSINESS_Marketing |
Microsoft Invoicing | DYN365BC_MS_INVOICING |
Azure Active Directory For Education | AAD_EDU |
Dynamics 365 For Sales Enterprise Attach | D365_SALES_ENT_ATTACH |
Dynamics 365 Customer Service Digital Messaging Vtrial | DYN365_CS_MESSAGING_VIRAL_TRIAL |
Stream For Office 365 | STREAM_O365_SMB |
Domestic Calling For Government | MCOPSTN1_GOV |
Microsoft Dynamics 365 Customer Voice Usl | Forms_Pro_USL |
Common Data Service Attended Rpa | CDS_ATTENDED_RPA |
Dynamics 365 Customer Service Voice Vtrial | DYN365_CS_VOICE_VIRAL_TRIAL |
Microsoft 365 Audio Conferencing | MCOMEETADV |
Audio Conferencing | MCOMEETADV |
Microsoft Social Engagement Professional – Eligibility Criteria Apply | NBPROFESSIONALFORCRM |
Windows 365 Enterprise 2 Vcpu, 8 Gb, 128 Gb | CPC_2 |
Dynamics 365 Business Central For Iws | PROJECT_MADEIRA_PREVIEW_IW |
To-Do (Plan 3) | BPOS_S_TODO_3 |
Bpos_S_Todo_3 | BPOS_S_TODO_3 |
Microsoft Stream For O365 K Sku | STREAM_O365_K |
Stream_O365_K | STREAM_O365_K |
Microsoft Stream For Office 365 F3 | STREAM_O365_K |
Dynamics 365 Team Members | DYN365_TEAM_MEMBERS |
Common Data Service – O365 P1 | DYN365_CDS_O365_P1 |
Azure Active Directory Premium P1 | AAD_PREMIUM |
Azure Active Directory Premium P | AAD_PREMIUM |
Aad_Premium | AAD_PREMIUM |
Yammer Midsize | YAMMER_MIDSIZE |
Yammer_Midsize | YAMMER_MIDSIZE |
Teams Multi-Geo | TEAMSMULTIGEO |
Microsoft Communications Compliance | COMMUNICATIONS_COMPLIANCE |
Retired – Microsoft Communications Compliance | COMMUNICATIONS_COMPLIANCE |
Microsoft Teams | MCO_TEAMS_IW |
Microsoft 365 Apps For Enterprise | OFFICESUBSCRIPTION |
Office 365 Proplus | OFFICESUBSCRIPTION |
Officesubscription | OFFICESUBSCRIPTION |
Dynamics 365 Sales Insights Vtrial | DYN365_SALES_INSIGHTS_VIRAL_TRIAL |
Project Online Desktop Client For Government | PROJECT_CLIENT_SUBSCRIPTION_GOV |
Microsoft Data Investigations | DATA_INVESTIGATIONS |
Microsoft 365 Phone System | MCOEV |
Phone System | MCOEV |
Microsoft 365 Phone Syste | MCOEV |
Power Apps Portals Page View Capacity Add-On For Government | POWERAPPS_PORTALS_PAGEVIEW_GCC |
Microsoft Defender For Office 365 (Plan 1) For Government | ATP_ENTERPRISE_GOV |
Atp_Enterprise_Gov | ATP_ENTERPRISE_GOV |
Power Apps For Office 365 F3 For Government | POWERAPPS_O365_S1_GOV |
Project P1 | PROJECT_P1 |
Whiteboard (Plan 3) | WHITEBOARD_PLAN3 |
Exchange Online Kiosk | EXCHANGE_S_DESKLESS |
Exchange_S_Deskless | EXCHANGE_S_DESKLESS |
Dynamics 365 Ai For Customer Service Trial | DYN365_AI_SERVICE_INSIGHTS |
Power Automate For Virtual Agent | FLOW_VIRTUAL_AGENT_BASE |
Minecraft Education Edition | MINECRAFT_EDUCATION_EDITION |
Office Mobile Apps For Office 365 For Gcc | OFFICEMOBILE_SUBSCRIPTION_GOV |
Office 365 Advanced Ediscovery | EQUIVIO_ANALYTICS |
Microsoft 365 Domestic Calling Plan | MCOPSTN1 |
Domestic Calling Plan | MCOPSTN1 |
Microsoft Remote Assist | MICROSOFT_REMOTE_ASSIST |
Microsoft Teams (Free) | TEAMS_FREE |
Common Data Service – O365 P2 | DYN365_CDS_O365_P2 |
Common Data Service | DYN365_CDS_O365_P2 |
School Data Sync (Plan 2) | SCHOOL_DATA_SYNC_P2 |
Common Data Service For Project | DYN365_CDS_PROJECT |
Communications Credits | MCOPSTNC |
Flow Free | FLOW_P2_VIRAL |
Information Protection For Office 365 – Standard | MIP_S_CLP1 |
Mip_S_Clp1 | MIP_S_CLP1 |
Office Online For Developer | SHAREPOINTWAC_DEVELOPER |
Powerapps For Dynamics 365 | POWERAPPS_DYN_TEAM |
Microsoft Excel Advanced Analytics | EXCEL_PREMIUM |
Microsoft 365 Domestic Calling Plan (120 Min) | MCOPSTN5 |
Domestic Calling Plan | MCOPSTN5 |
Power Apps For Dynamics 365 Vtrial | POWER_APPS_DYN365_VIRAL_TRIAL |
Microsoft Kaizala Pro | KAIZALA_O365_P2 |
Microsoft Kaizala Pro Plan 2 | KAIZALA_O365_P2 |
Azure Information Protection Premium P2 | RMS_S_PREMIUM2 |
Azure Information Protection Premium P2 | RMS_S_PREMIUM |
Power Automate (Plan 2) | FLOW_P2 |
Power Automate For Dynamics 365 Customer Voice | FLOW_FORMS_PRO |
Microsoft Teams | TEAMS1 |
Teams1 | TEAMS1 |
Dataverse For Pad | DATAVERSE_FOR_POWERAUTOMATE_DESKTOP |
Domestic And International Calling Plan | MCOPSTN2 |
Dynamics 365 Customer Service Insights For Cs Enterprise | D365_CSI_EMBED_CSEnterprise |
Office 365 Planner For Government | PROJECTWORKMANAGEMENT_GOV |
Projectworkmanagement_Gov | PROJECTWORKMANAGEMENT_GOV |
Outlook Customer Manager | O365_SB_Relationship_Management |
Retired – Outlook Customer Manager | O365_SB_Relationship_Management |
Powerapps Plan 1 For Government | POWERAPPS_P1_GOV |
Power Automate For Office 365 F3 For Government | FLOW_O365_S1_GOV |
Flow For Cci Bots | FLOW_CCI_BOTS |
Sharepoint (Plan 2) | SHAREPOINTENTERPRISE |
Dynamics 365 For Customer Service | SHAREPOINTENTERPRISE |
Sharepoint Online (Plan 2) | SHAREPOINTENTERPRISE |
Sharepoint (Plan 2)Dynamics 365 For Sales Pro Attach | SHAREPOINTENTERPRISE |
Common Data Service For Teams_F1 Gcc | CDS_O365_F1_GCC |
To-Do (Plan 1) | BPOS_S_TODO_1 |
Bpos_S_Todo_1 | BPOS_S_TODO_1 |
Dynamics 365 For Hcm Trial | Dynamics_365_for_HCM_Trial |
Microsoft 365 Advanced Communications | TEAMS_ADVCOMMS |
Premium Encryption In Office 365 | PREMIUM_ENCRYPTION |
Premium_Encryption | PREMIUM_ENCRYPTION |
Mco Free For Microsoft Teams (Free) | MCOFREE |
Secops Investigation For Mdi | ADALLOM_FOR_AATP |
Sharepoint (Plan 2) For Education | SHAREPOINTENTERPRISE_EDU |
Sharepoint Plan 2 For Edu | SHAREPOINTENTERPRISE_EDU |
Dynamics 365 For Talent – Attract Experience Team Member | DYN365_Enterprise_Talent_Attract_TeamMember |
Microsoft Endpoint Dlp | MICROSOFTENDPOINTDLP |
Dynamics 365 For Talent | DYN365_TALENT_ENTERPRISE |
Microsoft Records Management | RECORDS_MANAGEMENT |
Records_Management | RECORDS_MANAGEMENT |
Visio Desktop App | VISIO_CLIENT_SUBSCRIPTION |
Microsoft Dynamics 365 Customer Voice For Customer Service Enterprise | Forms_Pro_Service |
Dynamics 365 For Customer Service Pro | DYN365_CUSTOMER_SERVICE_PRO |
Dynamics 365 Project Operations | D365_ProjectOperations |
Dynamics 365 For Team Members | DYN365_ENTERPRISE_TEAM_MEMBERS |
Azure Rights Management | RMS_S_ENTERPRISE_GOV |
Rms_S_Enterprise_Gov | RMS_S_ENTERPRISE_GOV |
Mcopstn3 | MCOPSTN3 |
Sharepoint Plan 1 | SHAREPOINTENTERPRISE_MIDMARKET |
Microsoft Azure Active Directory Rights | RMS_S_PREMIUM |
Azure Information Protection Premium P1 | RMS_S_PREMIUM |
Azure Information Protection Premium P | RMS_S_PREMIUM |
Rms_S_Premium | RMS_S_PREMIUM |
Microsoft Stream For O365 E5 Sku | STREAM_O365_E5 |
Microsoft Stream For Office 365 E5 | STREAM_O365_E5 |
Microsoft Customer Key | CUSTOMER_KEY |
Customer_Key | CUSTOMER_KEY |
Microsoft Communications Dlp | COMMUNICATIONS_DLP |
Communications_Dlp | COMMUNICATIONS_DLP |
Insights By Myanalytics For Government | MYANALYTICS_P2_GOV |
Common Data Service – P2 | DYN365_CDS_P2 |
Microsoft 365 Lighthouse (Plan 1) | M365_LIGHTHOUSE_CUSTOMER_PLAN1 |
Power Apps For Sales Pro | POWERAPPS_SALES_PRO |
Skype For Business Online (Plan P1) | MCOLITE |
Power Bi Pro | BI_AZURE_P2 |
Sharepoint Multi-Geo | SHAREPOINTONLINE_MULTIGEO |
Microsoft Kaizala Pro Plan 1 | KAIZALA_O365_P1 |
Dynamics 365 For Sales Professional Trial | D365_SALES_PRO_IW |
Microsoft Stream For Office 365 E1 | STREAM_O365_E1 |
Microsoft Stream For O365 E1 Sku | STREAM_O365_E1 |
Ai Builder Capacity Per User Add-On | CDSAICAPACITY_PERUSER_NEW |
Yammer_Enterprise | YAMMER_ENTERPRISE |
Yammer Enterprise | YAMMER_ENTERPRISE |
Yammer Enterpris | YAMMER_ENTERPRISE |
Exchange Enterprise Cal Services (Eop Dlp) | EOP_ENTERPRISE_PREMIUM |
Power Automate For Office 365 | FLOW_O365_P2 |
Flow For Office 365 | FLOW_O365_P2 |
Power Automate Per User Plan For Government | FLOW_PER_USER_GCC |
Power Automate (Plan 1) For Government | FLOW_P1_GOV |
Microsoft Dynamics Crm Online Storage Add-On | CRMSTORAGE |
Australia Calling Plan | MCOPSTNEAU |
Universal Print | UNIVERSAL_PRINT_01 |
Rights Management Adhoc | RMS_S_ADHOC |
Windows Update For Business Deployment Service | WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE |
Nonprofit Portal | NONPROFIT_PORTAL |
Flow Per Business Process Plan | FLOW_BUSINESS_PROCESS |
Flow For Dynamics 365 | FLOW_DYN_APPS |
Power Automate For Dynamics 365 | FLOW_DYN_APPS |
Project Online Essentials | FLOW_DYN_APPS |
Powerapps For Dynamics 365 | FLOW_DYN_APPS |
Dynamics 365 Sales Enterprise Vtrial | DYN365_SALES_ENTERPRISE_VIRAL_TRIAL |
Project For Office (Plan F) | PROJECT_O365_F3 |
Flow_O365_P3_Gov | FLOW_O365_P3_GOV |
To-Do (Firstline) | BPOS_S_TODO_FIRSTLINE |
Power Apps For Guides | POWERAPPS_GUIDES |
Project P3 | PROJECT_PROFESSIONAL |
Power Automate For Dynamics 365 Vtrial | POWER_AUTOMATE_DYN365_VIRAL_TRIAL |
Microsoft Stream Storage Add-On | STREAM_STORAGE |
Iot Intelligence Add-In For D365 Supply Chain Management | D365_IOTFORSCM |
Forms_Gov_E5 | FORMS_GOV_E5 |
Microsoft Defender For Endpoint | WINDEFATP |
Powerapps For Dynamics 365 | POWERAPPS_DYN_APPS |
Power Apps For Dynamics 365 | POWERAPPS_DYN_APPS |
Flow For Dynamics 365 | POWERAPPS_DYN_APPS |
Dynamics 365 For Financials | POWERAPPS_DYN_APPS |
Mobile Device Management For Office 365 | INTUNE_O365 |
Intune_O365 | INTUNE_O365 |
Dynamics 365 For Sales Professional | DYN365_SALES_PRO |
Exchange Online (Kiosk) For Government | EXCHANGE_S_DESKLESS_GOV |
Exchange Online Multi-Geo | EXCHANGEONLINE_MULTIGEO |
Customer Lockbox For Government | LOCKBOX_ENTERPRISE_GOV |
Lockbox_Enterprise_Gov | LOCKBOX_ENTERPRISE_GOV |
Microsoft Azure Multi-Factor Authentication | MFA_PREMIUM |
Mfa_Premium | MFA_PREMIUM |
Visio Web App For Government | VISIOONLINE_GOV |
Skype For Business Online (Plan 1) For Government | MCOIMP_GOV |
Office 365 Advanced Security Management | ADALLOM_S_O365 |
Office 365 Cloud App Security | ADALLOM_S_O365 |
Adallom_S_O365 | ADALLOM_S_O365 |
Exchange Plan 2G | EXCHANGE_S_ENTERPRISE_GOV |
Exchange_S_Enterprise_Gov | EXCHANGE_S_ENTERPRISE_GOV |
Microsoft Staffhub | Deskless |
Office 365 Small Business Subscription | OFFICE_PRO_PLUS_SUBSCRIPTION_SMBIZ |
Microsoft 365 Apps For Enterprise (Unattended) | OFFICESUBSCRIPTION_unattended |
Microsoft Defender For Office 365 (Plan 2) | THREAT_INTELLIGENCE |
Office 365 Advanced Threat Protection (Plan 2) | THREAT_INTELLIGENCE |
Windows 10/11 Business | WINBIZ |
Power Automate For Power Apps Per User Plan For Gcc | Flow_PowerApps_PerUser_GCC |
Dynamics 365 Business Central Premium | DYN365_BUSCENTRAL_PREMIUM |
Microsoft Intune | INTUNE_SMBIZ |
Common Data Service – O365 P1 Gcc | DYN365_CDS_O365_P1_GCC |
Power Apps Per User Plan For Government | POWERAPPS_PER_USER_GCC |
Office For The Web For Government | SHAREPOINTWAC_GOV |
Office For The Web (Government) | SHAREPOINTWAC_GOV |
Sharepointwac_Gov | SHAREPOINTWAC_GOV |
Microsoft Defender For Office 365 (Plan 2) For Government | THREAT_INTELLIGENCE_GOV |
Threat_Intelligence_Gov | THREAT_INTELLIGENCE_GOV |
Sharepoint Online Kiosk | SHAREPOINTDESKLESS |
Sharepoint Kiosk | SHAREPOINTDESKLESS |
Sharepointdeskless | SHAREPOINTDESKLESS |
Asset Maintenance Add-In | D365_AssetforSCM |
Exchange Online Pop | EXCHANGE_B_STANDARD |
Microsoft Dynamics 365 Customer Voice Add-On | Forms_Pro_AddOn |
Common Data Service For Teams_F1 | CDS_O365_F1 |
Ai Builder Capacity Per User Add-On | CDSAICAPACITY_PERUSER |
Dynamics 365 For Business Central Essentials | DYN365_FINANCIALS_BUSINESS |
Flow For Dynamics 365 | DYN365_FINANCIALS_BUSINESS |
Exchange Foundation For Government | EXCHANGE_S_FOUNDATION_GOV |
Exchange Foundation For Government | EXCHANGE_FOUNDATION_GOV |
Exchange_S_Foundation_Gov | EXCHANGE_S_FOUNDATION_GOV |
Stream_O365_E5_Gov | STREAM_O365_E5_GOV |
Powerapps For Office 365 | POWERAPPS_O365_P1 |
Power Apps For Office 365 | POWERAPPS_O365_P1 |
Cloud App Security Discovery | ADALLOM_S_DISCOVERY |
Microsoft Defender For Cloud Apps Discovery | ADALLOM_S_DISCOVERY |
Adallom_S_Discovery | ADALLOM_S_DISCOVERY |
Microsoft Search | MICROSOFT_SEARCH |
Microsoft_Search | MICROSOFT_SEARCH |
Bi_Azure_P_2_Gov | BI_AZURE_P_2_GOV |
Power Bi Pro For Government | BI_AZURE_P_2_GOV |
Whiteboard (Plan 2) | WHITEBOARD_PLAN2 |
Cds Per App Baseline Access | CDS_PER_APP_IWTRIAL |
Common Data Service For Customer Insights Trial | CDS_CUSTOMER_INSIGHTS_TRIAL |
Dynamics 365 Customer Service Enterprise Vtrial | DYN365_CS_ENTERPRISE_VIRAL_TRIAL |
Common Data Service For Teams_P1 Gcc | CDS_O365_P1_GCC |
Common Data Service For Teams_P2 | CDS_O365_P2 |
Common Data Service For Teams | CDS_O365_P2 |
Dynamics 365 For_Operations | Dynamics_365_for_Operations |
Microsoft Forms (Plan 3) | OFFICE_FORMS_PLAN_3 |
Microsoft Dynamics 365 Customer Voice For Customer Engagement Plan | Forms_Pro_CE |
Onedrive For Business Basic For Government | ONEDRIVE_BASIC_GOV |
Microsoft Social Engagement – Service Discontinuation | DYN365_ENTERPRISE_CUSTOMER_SERVICE |
Microsoft Teams For Gcchigh (Ar) | TEAMS_AR_GCCHIGH |
Exchange Online (Plan 1) | EXCHANGE_S_STANDARD |
Microsoft Forms (Plan 2) | OFFICE_FORMS_PLAN_2 |
Data Loss Prevention | BPOS_S_DlpAddOn |
Power Apps For Office 365 (Plan 3) | POWERAPPS_O365_P3 |
Powerapps For Office 365 Plan 3 | POWERAPPS_O365_P3 |
Powerapps For Office 365 | POWERAPPS_O365_P3 |
Microsoft Insider Risk Management | INSIDER_RISK_MANAGEMENT |
Retired – Microsoft Insider Risk Management | INSIDER_RISK_MANAGEMENT |
Power Bi Premium P | PBI_PREMIUM_P1_ADDON |
Microsoft Stream For O365 E3 Sku | STREAM_O365_E3 |
Microsoft Stream For Office 365 E3 | STREAM_O365_E3 |
Windows 365 Enterprise 4 Vcpu, 16 Gb, 256 Gb | CPC_E_4C_16GB_256GB |
Microsoft Dynamics 365 For Finance | D365_Finance |
Cds Powerapps Per App Plan | CDS_PER_APP |
Customer Lockbox | LOCKBOX_ENTERPRISE |
Lockbox_Enterprise | LOCKBOX_ENTERPRISE |
Sharepointlite | SHAREPOINTLITE |
Powerapps For Developer | POWERAPPS_DEV_VIRAL |
Skype For Business Online (Plan 2) For Government | MCOSTANDARD_GOV |
Mcostandard_Gov | MCOSTANDARD_GOV |
Sharepoint For Developer | SHAREPOINT_S_DEVELOPER |
Microsoft 365 Communication Compliance | MICROSOFT_COMMUNICATION_COMPLIANCE |
M365 Communication Compliance | MICROSOFT_COMMUNICATION_COMPLIANCE |
Microsoft_Communication_Compliance | MICROSOFT_COMMUNICATION_COMPLIANCE |
Windows Store Service | WINDOWS_STORE |
Project For Office (Plan E1) | PROJECT_O365_P1 |
Iot Intelligence Add-In Additional Machines | D365_IOTFORSCM_ADDITIONAL |
Graph Connectors Search With Index | GRAPH_CONNECTORS_SEARCH_INDEX |
Common Data Service For Project P1 | DYN365_CDS_FOR_PROJECT_P1 |
Common Data Service For Teams_P2 Gcc | CDS_O365_P2_GCC |
Windows 365 Business 2 Vcpu 4 Gb 64 Gb | CPC_B_2C_4RAM_64GB |
Ai Builder Capacity Add-On | CDSAICAPACITY |
Dyn365_Cds_O365_P3_Gcc | DYN365_CDS_O365_P3_GCC |
Microsoft Dynamics Crm Online Additional Test Instance | CRMTESTINSTANCE |
Education Analytics | EducationAnalyticsP1 |
Dynamics 365 For Retail | Dynamics_365_for_Retail |
Windows Store For Business Edu Store_Faculty | Windows Store for Business EDU Store_faculty |
Microsoft Stream | MICROSOFTSTREAM |
Power Automate For Office 365 For Government | FLOW_O365_P1_GOV |
Dynamics 365 Business Central Database Capacity | DYN365_BUSCENTRAL_DB_CAPACITY |
Microsoft Kaizala Pro Plan 3 | KAIZALA_O365_P3 |
Microsoft Kaizala Pro | KAIZALA_O365_P3 |
Common Data Service For Teams_P3 | CDS_O365_P3 |
Common Data Service For Teams | CDS_O365_P3 |
Skype For Business Online (Plan 1) | MCOIMP |
Mcoimp | MCOIMP |
Onedriveenterprise | ONEDRIVEENTERPRISE |
Office 365 Privileged Access Management | PAM_ENTERPRISE |
Sharepoint Kioskg | SHAREPOINTDESKLESS_GOV |
Project For Office (Plan E5) | PROJECT_O365_P3 |
Skype For Business Online (Plan 2) For Midsiz | MCOSTANDARD_MIDMARKET |
Common Data Service Unattended Rpa | CDS_UNATTENDED_RPA |
Power Apps Per App Plan | POWERAPPS_PER_APP |
Microsoft Workplace Analytics Insights User | WORKPLACE_ANALYTICS_INSIGHTS_USER |
Flow For Dynamics 365 | FLOW_DYN_P2 |
Flow For Dynamics 36 | FLOW_DYN_P2 |
Universal Print Without Seeding | UNIVERSAL_PRINT_NO_SEEDING |
Common Data Service For Dynamics 365 Supply Chain Management | DYN365_CDS_SUPPLYCHAINMANAGEMENT |
Microsoft Planner | PROJECTWORKMANAGEMENT |
Microsoft Planne | PROJECTWORKMANAGEMENT |
Projectworkmanagement | PROJECTWORKMANAGEMENT |
Graph Connectors Search With Index (Viva Topics) | GRAPH_CONNECTORS_SEARCH_INDEX_TOPICEXP |
Viva Learning Seeded | VIVA_LEARNING_SEEDED |
Microsoft Threat Experts – Experts On Demand | EXPERTS_ON_DEMAND |
Whiteboard (Plan 1) | WHITEBOARD_PLAN1 |
Power Virtual Agents For Office 365 F1 | POWER_VIRTUAL_AGENTS_O365_F1 |
Cds_O365_P3_Gcc | CDS_O365_P3_GCC |
Teams Free Service | TEAMS_FREE_SERVICE |
Power Automate For Office 365 K1 | FLOW_O365_S1 |
Power Automate For Office 365 F3 | FLOW_O365_S1 |
Meeting Room Managed Services | MMR_P1 |
Office 365 Extra File Storage | SHAREPOINTSTORAGE |
Azure Information Protection Premium P1 | RMS_S_ENTERPRISE |
Microsoft Azure Active Directory Rights | RMS_S_ENTERPRISE |
Microsoft Azure Active Directory Rights | RMS_S_ENTERPRISE) |
Azure Rights Management | RMS_S_ENTERPRISE |
Rms_S_Enterprise | RMS_S_ENTERPRISE |
Power Apps Portals Login Capacity Add-On For Government | POWERAPPS_PORTALS_LOGIN_GCC |
Common Data Service For Teams_P1 | CDS_O365_P1 |
Microsoft 365 Defender | MTP |
Mtp | MTP |
Microsoft Dynamics Crm Online Basic | CRMPLAN2 |
Office 365 Safedocs | SAFEDOCS |
Microsoft Defender For Business | MDE_SMB |
Forms For Government (Plan F1) | FORMS_GOV_F1 |
Dynamics 365 For Retail Team Members | Dynamics_365_for_Retail_Team_members |
Microsoft Intune | INTUNE_A |
Intune_A | INTUNE_A |
School Data Sync (Plan 1) | SCHOOL_DATA_SYNC_P1 |
Power Apps For Office 365 For Government | POWERAPPS_O365_P1_GOV |
Information Barriers | INFORMATION_BARRIERS |
Information_Barriers | INFORMATION_BARRIERS |
Microsoft Azure Active Directory Basic | AAD_BASIC |
Flow Per User Plan | FLOW_PER_USER |
Power Apps For Customer Service Pro | POWERAPPS_CUSTOMER_SERVICE_PRO |
Power Automate For Office 365 For Government | FLOW_O365_P2_GOV |
Power Automate For Power Apps Per App Plan | Flow_Per_APP |
Officemobile_Subscription | OFFICEMOBILE_SUBSCRIPTION |
Office Mobile Apps For Office 365 | OFFICEMOBILE_SUBSCRIPTION |
Power Apps For Office 365 | POWERAPPS_O365_P2 |
Powerapps For Office 365 | POWERAPPS_O365_P2 |
Powerapps For Office 36 | POWERAPPS_O365_P2 |
Dynamics 365 For Finance And Operations Enterprise Edition – Regulatory Service | DYN365_REGULATORY_SERVICE |
Dynamics 365 For Finance And Operations, Enterprise Edition – Regulatory Service | DYN365_REGULATORY_SERVICE |
Sharepointstandard | SHAREPOINTSTANDARD |
Sharepoint (Plan 1) | SHAREPOINTSTANDARD |
Sharepoint Standard | SHAREPOINTSTANDARD |
Sharepoint | SHAREPOINTSTANDARD |
Flow For Developer | FLOW_DEV_VIRAL |
Viva Topics | CORTEX |
Common Data Service For Flow Per Business Process Plan | CDS_Flow_Business_Process |
To-Do (Plan 2) | BPOS_S_TODO_2 |
Bpos_S_Todo_2 | BPOS_S_TODO_2 |
Common Data Service – O365 F1 | DYN365_CDS_O365_F1 |
Dyn365_Cds_O365_F1 | DYN365_CDS_O365_F1 |
Microsoft Business Center | MICROSOFT_BUSINESS_CENTER |
Data Classification In Microsoft 365 | MIP_S_Exchange |
Dynamics 365 Ai For Customer Service Virtual Agents Viral | CCIBOTS_PRIVPREV_VIRAL |
Common Data Service For Government | DYN365_CDS_P1_GOV |
Dynamics 365 For Retail Device | DYN365_RETAIL_DEVICE |
Common Data Service For Cci Bots | DYN365_CDS_CCI_BOTS |
Common Data Service | DDYN365_CDS_DYN_P2 |
Office 365 Advanced Ediscovery For Government | EQUIVIO_ANALYTICS_GOV |
Equivio_Analytics_Gov | EQUIVIO_ANALYTICS_GOV |
Flow P2 Viral | FLOW_P2_VIRAL_REAL |
Microsoft Ml-Based Classification | ML_CLASSIFICATION |
Dynamics 365 Business Central Additional Environment Addon | DYN365_BUSCENTRAL_ENVIRONMENT |
Microsoft Stream Plan 2 | STREAM_P2 |
Exchange Online (P1) | EXCHANGE_L_STANDARD |
Dynamics 365 For Talent Team Members | Dynamics_365_for_Talent_Team_members |
Powerapps Trial | POWERAPPS_P2_VIRAL |
Microsoft 365 Lighthouse (Plan 2) | M365_LIGHTHOUSE_PARTNER_PLAN1 |
Dynamics 365 P1 | DYN365_ENTERPRISE_P1 |
Dynamics 365 Customer Engagement Plan | DYN365_ENTERPRISE_P1 |
Microsoft Insider Risk Management | INSIDER_RISK |
Microsoft Stream For O365 For Government (F1) | STREAM_O365_K_GOV |
Ms Imagine Academy | IT_ACADEMY_AD |
Dynamics 365 For Operations Non-Production Multi-Box Instance For Standard Acceptance Testing (Tier 2) | Dynamics_365_for_Operations_Sandbox_Tier2 |
Common Data Service – Dev Viral | DYN365_CDS_DEV_VIRAL |
Information Protection And Governance Analytics – (Premium | Content_Explorer |
Information Protection And Governance Analytics – Premium | Content_Explorer |
Information Protection And Governance Analytics – Premium) | Content_Explorer |
Information Protection And Governance Analytics -Premium | Content_Explorer |
Content_Explorer | Content_Explorer |
Exchange Online Archiving For Exchange Server | EXCHANGE_S_ARCHIVE |
Intune For Education | INTUNE_EDU |
Microsoft Intune For Education | INTUNE_EDU |
Onedrive For Business Basic | ONEDRIVE_BASIC |
Onedrive For Business (Basic) | ONEDRIVE_BASIC |
Microsoft 365 Phone System For Government | MCOEV_GOV |
Mcoev_Gov | MCOEV_GOV |
Dynamics 365 For Sales Professional Trial | D365_SALES_PRO_IW_Trial |
Nucleus | Nucleus |
Customer Voice For Dynamics 365 Vtrial | CUSTOMER_VOICE_DYN365_VIRAL_TRIAL |
Common Data Service For Apps Log Capacity | CDS_LOG_CAPACITY |
Power Automate For Power Apps Per User Plan | Flow_PowerApps_PerUser |
Flow Per App Baseline Access | Flow_Per_APP_IWTRIAL |
Azure Active Directory | AAD_SMB |
Microsoft 365 Apps For Enterprise G | OFFICESUBSCRIPTION_GOV |
Officesubscription_Gov | OFFICESUBSCRIPTION_GOV |
Power Virtual Agents For Office 365 P3 | POWER_VIRTUAL_AGENTS_O365_P3 |
Power Virtual Agents For Office 365 | POWER_VIRTUAL_AGENTS_O365_P3 |
Power Apps For Office 365 K1 | POWERAPPS_O365_S1 |
Power Apps For Office 365 F3 | POWERAPPS_O365_S1 |
Office For The Web For Education | SHAREPOINTWAC_EDU |
Office For The Web (Education) | SHAREPOINTWAC_EDU |
Windows 10 Enterprise E3 (Local Only) | WIN10_ENT_LOC_F1 |
Microsoft Forms (Plan E5) | FORMS_PLAN_E5 |
Microsoft Information Governance | INFO_GOVERNANCE |
Info_Governance | INFO_GOVERNANCE |
Dynamics 365 Customer Insights Engagement Insights Viral | DYN365_CUSTOMER_INSIGHTS_ENGAGEMENT_INSIGHTS_BASE_TRIAL |
Dynamics 365 Operations Trial Environment | ERP_TRIAL_INSTANCE |
Project Online Service For Government | SHAREPOINT_PROJECT_GOV |
Sharepointstorage_Gov | SHAREPOINTSTORAGE_GOV |
Microsoft Powerapps | POWERAPPSFREE |
Dynamics Customer Voice Add-On | CUSTOMER_VOICE_ADDON |
Windows 10 Enterprise (New) | Virtualization Rights for Windows 10 (E3/E5+VDA) |
Office For The Web | SHAREPOINTWAC |
Office Online | SHAREPOINTWAC |
Common Data Service For Dynamics 365 Finance | DYN365_CDS_FINANCE |
Common Data Service | CDS_FORM_PRO_USL |
Exchange Online (Plan 1) For Government | EXCHANGE_S_STANDARD_GOV |
Power Apps Per User Plan | POWERAPPS_PER_USER |
Skype For Business Cloud Pbx For Small And Medium Business | MCOEVSMB |
Dynamics 365 Customer Insights Viral Plan | DYN365_CUSTOMER_INSIGHTS_VIRAL |
Azure Active Directory Premium P2 | AAD_PREMIUM_P2 |
Microsoft Dynamics Crm Online Instance | CRMINSTANCE |
Information Protection For Office 365 – Premium | MIP_S_CLP2 |
Mip_S_Clp2 | MIP_S_CLP2 |
Exchange Online (Plan 2) | EXCHANGE_S_ENTERPRISE |
Sharepoint Syntex | Intelligent_Content_Services |
Microsoft Forms (Plan F1) | FORMS_PLAN_K |
Microsoft Defender For Office 365 (Plan 1) | ATP_ENTERPRISE |
Dynamics 365 For Talent – Onboard Experience | DYN365_Enterprise_Talent_Onboard_TeamMember |
Microsoft 365 Phone System Virtual User | MCOEV_VIRTUALUSER |
Microsoft Workplace Analytics | WORKPLACE_ANALYTICS |
Forms For Government (Plan E1) | FORMS_GOV_E1 |
Microsoft 365 Audio Conferencing For Government | MCOMEETADV_GOV |
Mcomeetadv_Gov | MCOMEETADV_GOV |
Dynamics 365 For Operations Team Members | DYNAMICS_365_FOR_OPERATIONS_TEAM_MEMBERS |
Virtual Agent Base | VIRTUAL_AGENT_BASE |
Dynamics 365 For Operations Enterprise Edition – Sandbox Tier 4:Standard Performance Testing | Dynamics_365_for_Operations_Sandbox_Tier4 |
Dynamics 365 For Talent: Attract | Dynamics_365_Hiring_Free_PLAN |
Dynamics 365 Hiring Free Plan | DYNAMICS_365_HIRING_FREE_PLAN |
Visio Desktop App For Government | VISIO_CLIENT_SUBSCRIPTION_GOV |
Microsoft Dynamics Crm Online Professiona | CRMSTANDARD |
Sharepoint Plan 1G | SharePoint Plan 1G |
Flow For Project | FLOW_FOR_PROJECT |
Project Online Desktop Client | PROJECT_CLIENT_SUBSCRIPTION |
Microsoft Power Bi Information Services Plan 1 | SQL_IS_SSIM |
Microsoft Power Bi Information Services Plan | SQL_IS_SSIM |
Exchange Online Plan | EXCHANGE_S_STANDARD_MIDMARKET |
Sharepoint Syntex – Spo Type | Intelligent_Content_Services_SPO_type |
Microsoft Teams For Dod (Ar) | TEAMS_AR_DOD |
Project Online Essentials For Government | PROJECT_ESSENTIALS_GOV |
Microsoft Dynamics 365 Customer Voice For Customer Insights | Forms_Pro_Customer_Insights |
Project Online Service | SHAREPOINT_PROJECT |
Sharepoint_Project | SHAREPOINT_PROJECT |
Microsoft Workplace Analytics Insights Backend | WORKPLACE_ANALYTICS_INSIGHTS_BACKEND |
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!