[玩转系统] Office 365 许可证和 PowerShell
作者:精品下载站 日期:2024-12-14 13:24:52 浏览:16 分类:玩电脑
Office 365 许可证和 PowerShell
这篇文章将向您展示如何使用 Microsoft Graph PowerShell 查看和管理您的 Office 365 许可证。
您将学会快速找到以下问题的答案:
- 您有哪些许可计划和服务?
- 有多少个许可证可用,以及有多少个已使用?
- 哪些用户正在使用哪些许可证?
详细的 Office 365 许可见解可以帮助您为组织节省资金。
要了解组织中的许可证使用情况,PowerShell 是一个很棒的工具。
AD 中的 Office 365 许可证管理
但是,对于许可证的日常管理,您应该使用 Easy365Manager。
Easy365Manager 是 Active Directory 用户和计算机的管理单元,可让您直接在 Active Directory 的用户属性中查看和管理 Office 365 许可证和邮箱:
即使您使用的是组分配的许可证,Easy365Manager 也可以非常方便地查看许可证何时应用于用户。
使用 Easy365Manager,您不再需要登录不同的 Office 365 Web 控制台。相反,您可以管理 AD 用户和计算机中的所有内容,甚至删除本地 Exchange Server。
Easy365Manager 拥有许多功能,可以让您的管理生活变得更加轻松。在此处查看 20 多个用例。
Office 365 许可概述
在深入研究 PowerShell 和 Office 365 许可证之前,让我们仔细看看 Office 365 许可模型的结构对象:
Office 365 许可模型
下图显示了这些对象如何相互关联:
在上例中,Office 365 企业版 E5 许可证计划已分配给用户(由用户使用)。这意味着许可计划中的所有服务计划都可供用户使用(但不一定启用)。
Office 365 许可 PowerShell 命令
现在,让我们深入了解用于查看和管理 Office 365 许可证的特定 PowerShell 命令。
首先,您需要使用以下 CmdLet 连接到 Microsoft Graph PowerShell:
Connect-MgGraph -Scopes Directory.Read.All,User.Read.All
此命令假设您已经安装了 Microsoft Graph PowerShell 模块。
此外,您需要同意 Microsoft Graph PowerShell 企业应用程序才能访问列出的范围。
使用 Get-MgSubscribedSku 列出所有许可计划
连接后,您可以使用以下命令列出所有许可计划:
Get-MgSubscribedSku | select SkuPartNumber,SkuId,@{N='ActiveUnits';E={$_.PrepaidUnits.enabled}},ConsumedUnits
这将生成类似于以下内容的输出:
SkuPartNumber SkuId ActiveUnits ConsumedUnits
------------ ------------------------------------ ----------- -------------
ENTERPRISEPREMIUM c7df2760-2c81-4ef7-b578-5b5392b571df 300 287
POWER_BI_PRO f8a1db68-be16-40ed-86d5-cb42ce701560 150 29
ENTERPRISEPACK 6fd2c87f-b296-42f0-b197-1e91e994b900 400 376
FLOW_FREE f30db892-07e9-47e9-837c-80727f46fd3d 10000 92
EXCHANGESTANDARD 4b9405b0-7788-4568-add1-99614e613b69 50 25
POWERFLOW_P2 ddfae3e3-fcb2-4174-8ebd-3023cb213c8b 2 2
SMB_APPS 90d8b3f8-712e-4f7b-aa1e-62e7ae6cbe96 200 0
上面的输出显示了每个许可计划的名称、SkuId、活动(可用)单位和消耗单位。
使用 Get-MgSubscribedSku 列出许可计划中的所有服务计划
要列出特定许可计划中包含的所有服务计划,请使用以下命令:
Get-MgSubscribedSku | Where-Object {$_.SkuPartNumber -eq "ENTERPRISEPACK"} | ForEach-Object {$_.ServicePlans} | ft ServicePlanName,ProvisioningStatus
这将生成类似于以下内容的输出:
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
使用 Get-MgUser 列出分配给用户的所有许可计划
要列出分配给单个帐户的所有许可计划,请使用以下命令:
Get-MgUser -UserId [email protected] -Property AssignedPlans | Select -ExpandProperty AssignedPlans
这会生成如下输出:
AssignedDateTime CapabilityStatus Service ServicePlanId
---------------- ---------------- ------- -------------
4/12/2023 6:57:33 AM Enabled exchange 2f442157-a11c-46b9-ae5b-6e39ff4e5849
4/12/2023 6:57:33 AM Enabled MicrosoftThreatProtection bf28f719-7844-4079-9c78-c1307898e192
4/12/2023 6:57:33 AM Enabled exchange 199a5c09-e0ca-4e37-8f7c-b05d533e1ea2
4/12/2023 6:57:33 AM Enabled TeamspaceAPI 57ff2da0-773e-42df-b2af-ffb7a2317929
4/12/2023 6:57:33 AM Enabled OfficeForms e212cbc7-0961-4c40-9825-01117710dcb1
4/12/2023 6:57:33 AM Enabled MicrosoftOffice 531ee2f8-b1cb-453b-9c21-d2180d014ca5
4/12/2023 6:57:33 AM Enabled MicrosoftCommunicationsOnline 4828c8ec-dc2e-4779-b502-87ac9ce28ab7
11/29/2022 1:24:17 PM Enabled exchange efb87545-963c-4e0d-99df-69c6916d9eb0
正如您在此输出中看到的,八个许可计划已分配给该用户。
使用 Get-MgUser 列出使用许可计划的所有用户
要列出使用(消费)特定许可计划的所有用户,请使用以下命令:
Get-MgUser -Property AssignedLicenses,DisplayName -Filter "assignedLicenses/any(u:u/skuId eq c42b9cae-ea4f-4ab7-9717-81576235ccac)" | ft DisplayName
这将生成类似于以下内容的输出:
DisplayName
-----------
Tycho Brahe
Lene Hau
Niels Bohr
Hans Christian Orsted
Ole Romer
Holger Bech Nielsen
Jens Martin Knudsen
使用 Set-MgUserLicense 分配和禁用服务计划
有时,您不想向用户分配许可计划中的所有服务。
为此,请创建一个许可证对象,用于标识要分配的许可计划和要禁用的服务计划(在许可计划中)。
以下示例显示如何创建分配 E5 许可计划并禁用 Microsoft Teams 和 Microsoft Intune 的许可对象:
$E5Sku = Get-MgSubscribedSku -All | ? { $_.SkuPartNumber -eq 'SPE_E5'}
$DisabledPlans = $E5Sku.ServicePlans | Where ServicePlanName -in ("TEAMS1", "INTUNE_A") | Select -ExpandProperty ServicePlanId
$LicenseObject = @(
@{
SkuId = $E5Sku.SkuId
DisabledPlans = $DisabledPlans
}
)
Set-MgUserLicense -UserId [email protected] -AddLicenses $LicenseObject -RemoveLicenses @()
如何节省 Office 365 许可费用
您应该有一个流程来持续确保您的组织不会获得过度许可。这不仅仅是进行一次性调查的问题——您应该定期进行。
此外,请确保现有流程考虑 Office 365 许可。例如,只要用户离开公司,您的用户生命周期管理程序就应该释放用户许可证。
让我们尝试识别看似不活动的(许可)用户邮箱。使用以下 PowerShell 脚本来识别过去 90 天内未登录的邮箱:
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
查看输出以检查用户是否已离开公司,或者是否应该将其转换为共享邮箱(不需要 Office 365 许可证)。
Office 365 许可计划名称
最后,让我们看一下 Office 365 许可的命名约定。
在日常演讲中,我们使用其显示名称来引用 Office 365 许可计划,例如 Office 365 E5、Office 365 Small Business、Microsoft Teams Essentials 等。不幸的是,这些名称未在 Office 365 Graph 中使用,因此我们必须翻译他们手动。
例如,要查找分配了 Office 365 E5 的所有用户,我们需要查找“ENTERPRISEPREMIUM”。要查找分配了 Office 365 小型企业版的用户,我们必须查找“LITEPACK”等。
(有关服务计划名称的列表,请转到此处)
您可以在此处查看 Office 365 许可名称的完整列表(摘自本网站):
Office 365 许可计划名称
Azure Active Directory BasicAAD_BASIC
Azure Active Directory Premium P1AAD_PREMIUM
Azure Active Directory Premium P1 for FacultyAAD_PREMIUM_FACULTY
Azure Active Directory Premium P2AAD_PREMIUM_P2
Office 365 Cloud App SecurityADALLOM_O365
Microsoft Cloud App SecurityADALLOM_STANDALONE
Advanced CommunicationsADV_COMMS
Microsoft Defender for IdentityATA
Microsoft Defender for Office 365 (Plan 1)ATP_ENTERPRISE
Microsoft Defender for Office 365 (Plan 1) FacultyATP_ENTERPRISE_FACULTY
Microsoft Defender for Office 365 (Plan 1) GCCATP_ENTERPRISE_GOV
Microsoft Dynamics AX7 User TrialAX7_USER_TRIAL
Microsoft 365 Business Voice (without calling plan)业务_语音_DIRECTROUTING
Microsoft 365 Business Voice (without Calling Plan) for USBUSINESS_VOICE_DIRECTROUTING_MED
Microsoft 365 Business Voice业务_语音_MED2
Microsoft 365 Business Voice (US)BUSINESS_VOICE_MED2_TELCO
Power Virtual Agents Viral TrialCCIBOTS_PRIVPREV_VIRAL
Common Data Service Database CapacityCDS_DB_CAPACITY
Common Data Service Database Capacity for GovernmentCDS_DB_CAPACITY_GOV
Common Data Service for Apps File CapacityCDS_文件_容量
Common Data Service Log CapacityCDS_LOG_CAPACITY
AI Builder Capacity add-onCDSA容量
Compliance Manager Premium Assessment Add-On for GCCCMPA_addon_GCC
Windows 365 Business 1 vCPU 2 GB 64 GBCPC_B_1C_2RAM_64GB
Windows 365 Business 2 vCPU 4 GB 128 GBCPC_B_2C_4RAM_128GB
Windows 365 Business 2 vCPU 4 GB 256 GBCPC_B_2C_4RAM_256GB
Windows 365 Business 2 vCPU 4 GB 64 GBCPC_B_2C_4RAM_64GB
Windows 365 Business 2 vCPU 8 GB 128 GBCPC_B_2C_8RAM_128GB
Windows 365 Business 2 vCPU 8 GB 256 GBCPC_B_2C_8RAM_256GB
Windows 365 Business 4 vCPU 16 GB 128 GBCPC_B_4C_16RAM_128GB
Windows 365 Business 4 vCPU 16 GB 128 GB (with Windows Hybrid Benefit)CPC_B_4C_16RAM_128GB_WHB
Windows 365 Business 4 vCPU 16 GB 256 GBCPC_B_4C_16RAM_256GB
Windows 365 Business 4 vCPU 16 GB 512 GBCPC_B_4C_16RAM_512GB
Windows 365 Business 8 vCPU 32 GB 128 GBCPC_B_8C_32RAM_128GB
Windows 365 Business 8 vCPU 32 GB 256 GBCPC_B_8C_32RAM_256GB
Windows 365 Business 8 vCPU 32 GB 512 GBCPC_B_8C_32RAM_512GB
Windows 365 Enterprise 1 vCPU 2 GB 64 GBCPC_E_1C_2GB_64GB
Windows 365 Enterprise 2 vCPU 4 GB 128 GBCPC_E_2C_4GB_128GB
Windows 365 Enterprise 2 vCPU 4 GB 256 GBCPC_E_2C_4GB_256GB
Windows 365 Enterprise 2 vCPU 4 GB 64 GBCPC_E_2C_4GB_64GB
Windows 365 Enterprise 2 vCPU 8 GB 128 GBCPC_E_2C_8GB_128GB
Windows 365 Enterprise 2 vCPU 8 GB 256 GBCPC_E_2C_8GB_256GB
Windows 365 Enterprise 4 vCPU 16 GB 128 GBCPC_E_4C_16GB_128GB
Windows 365 Enterprise 4 vCPU 16 GB 256 GBCPC_E_4C_16GB_256GB
Windows 365 Enterprise 4 vCPU 16 GB 512 GBCPC_E_4C_16GB_512GB
Windows 365 Enterprise 8 vCPU 32 GB 128 GBCPC_E_8C_32GB_128GB
Windows 365 Enterprise 8 vCPU 32 GB 256 GBCPC_E_8C_32GB_256GB
Windows 365 Enterprise 8 vCPU 32 GB 512 GBCPC_E_8C_32GB_512GB
Windows 365 Enterprise 2 vCPU 4 GB 128 GB (Preview)CPC_LVL_1
Windows 365 Enterprise 2 vCPU 8 GB 128 GB (Preview)CPC_LVL_2
Windows 365 Enterprise 4 vCPU 16 GB 256 GB (Preview)CPC_LVL_3
Dynamics 365 Hybrid ConnectorCRM_HYBRIDCONNECTOR
Dynamics 365 Enterprise Edition – Additional Portal (Qualified Offer)CRM_ONLINE_PORTAL
Dynamics 365 – Additional Production Instance (Qualified Offer)客户关系管理
Microsoft Dynamics CRM Online BasicCRM计划2
Microsoft Dynamics CRM Online客户关系管理标准
Dynamics 365 – Additional Database Storage (Qualified Offer)CRM存储
Dynamics 365 – Additional Non-Production Instance (Qualified Offer)CRM测试实例
Dynamics 365 for Customer Service Enterprise Attach to Qualifying Dynamics 365 Base Offer AD365_CUSTOMER_SERVICE_ENT_ATTACH
Dynamics 365 for Field Service Attach to Qualifying Dynamics 365 Base OfferD365_FIELD_SERVICE_ATTACH
Dynamics 365 for Marketing USLD365_MARKETING_USER
Dynamics 365 Sales Enterprise Attach to Qualifying Dynamics 365 Base OfferD365_SALES_ENT_ATTACH
Dynamics 365 For Sales ProfessionalD365_SALES_PRO
Dynamics 365 Sales Professional Attach to Qualifying Dynamics 365 Base OfferD365_SALES_PRO_ATTACH
Dynamics 365 For Sales Professional TrialD365_SALES_PRO_IW
Microsoft Defender for Endpoint P1DEFENDER_ENDPOINT_P1
Office 365 F3无桌面背包
Office 365 E3 Developer开发包
Microsoft 365 E5 Developer (without Windows and Audio Conferencing)开发包_E5
Microsoft Relationship Sales solutionDYN365_企业_关系_销售
Dynamics 365 Customer Service Insights TrialDYN365_AI_SERVICE_INSIGHTS
Dynamics 365 Asset Management Addl AssetsDYN365_资产管理
Dynamics 365 Business Central Additional Environment AddonDYN365_BUSCENTRAL_ADD_ENV_ADDON
Dynamics 365 Business Central Database CapacityDYN365_BUSCENTRAL_DB_CAPACITY
Dynamics 365 Business Central EssentialsDYN365_BUSCENTRAL_ESSENTIAL
Dynamics 365 Business Central PremiumDYN365_BUSCENTRAL_PREMIUM
Dynamics 365 Business Central Team MembersDYN365_BUSCENTRAL_TEAM_MEMBER
Dynamics 365 for Marketing Business EditionDYN365_BUSINESS_营销
Dynamics 365 for Customer Service ChatDYN365_CS_聊天
Dynamics 365 Customer Insights vTrialDYN365_CUSTOMER_INSIGHTS_VIRAL
Dynamics 365 Customer Service ProfessionalDYN365_CUSTOMER_SERVICE_PRO
Dynamics 365 Customer Voice Additional ResponsesDYN365_CUSTOMER_VOICE_ADDON
Dynamics 365 Customer VoiceDYN365_CUSTOMER_VOICE_BASE
Dynamics 365 for Case Management Enterprise EditionDYN365_ENTERPRISE_CASE_MANAGEMENT
Dynamics 365 for Customer Service Enterprise EditionDYN365_ENTERPRISE_CUSTOMER_SERVICE
Dynamics 365 for Field Service Enterprise EditionDYN365_ENTERPRISE_FIELD_SERVICE
Dynamics 365 P1 Tria for Information WorkersDYN365_ENTERPRISE_P1_IW
Dynamics 365 Customer Engagement PlanDYN365_ENTERPRISE_PLAN1
Dynamics 365 for Sales Enterprise EditionDYN365_ENTERPRISE_SALES
Dynamics 365 for Sales and Customer Service Enterprise EditionDYN365_ENTERPRISE_SALES_CUSTOMERSERVICE
Dynamics 365 for Team Members Enterprise EditionDYN365_ENTERPRISE_TEAM_MEMBERS
Dynamics 365 FinanceDYN365_财经
Dynamics 365 Business Central External AccountantDYN365_FINANCIALS_ACCOUNTANT_SKU
Dynamics 365 for Financials Business EditionDYN365_FINANCIALS_BUSINESS_SKU
Sensor Data Intelligence Additional Machines Add-in for Dynamics 365 Supply Chain ManagementDYN365_IOT_INTELLIGENCE_ADDL_MACHINES
Sensor Data Intelligence Scenario Add-in for Dynamics 365 Supply Chain ManagementDYN365_IOT_INTELLIGENCE_SCENARIO
Dynamics 365 for Marketing AttachDYN365_MARKETING_APP_ATTACH
Dynamics 365 for Marketing Additional ApplicationDYN365_MARKETING_APPLICATION_ADDON
Dynamics 365 for Marketing Addnl Contacts Tier 5DYN365_MARKETING_CONTACT_ADDON_T5
Dynamics 365 for Marketing Additional Non-Prod ApplicationDYN365_MARKETING_SANDBOX_APPLICATION_ADDON
Dynamics 365 Regulatory Service – Enterprise Edition TrialDYN365_REGULATORY_SERVICE
Dynamics 365 Sales PremiumDYN365_SALES_PREMIUM
Dynamics 365 for Supply Chain ManagementDYN365_单片机
Dynamics 365 Team MembersDYN365_TEAM_MEMBERS
Dynamics 365 Customer Service Enterprise Viral TrialDynamics_365_Customer_Service_Enterprise_viral_Trial
Dynamics 365 Field Service Viral TrialDynamics_365_Field_Service_Enterprise_viral_Trial
Dynamics 365 UNF OPS Plan ENT EditionDynamics_365_for_Operations
Dynamics 365 Operations – DeviceDynamics_365_for_Operations_Devices
Dynamics 365 Operations – Sandbox Tier 2:Standard Acceptance TestingDynamics_365_for_Operations_Sandbox_Tier2_SKU
Dynamics 365 Operations – Sandbox Tier 4:Standard Performance TestingDynamics_365_for_Operations_Sandbox_Tier4_SKU
Dynamics 365 Talent: AttractDynamics_365_Hiring_SKU
Dynamics 365 Talent: OnboardDYNAMICS_365_ONBOARDING_SKU
Dynamics 365 Sales Premium Viral TrialDynamics_365_Sales_Premium_Viral_Trial
Windows 10/11 Enterprise E3 VDA仅E3_VDA_
Enterprise Mobility + Security E3特快专递
Enterprise Mobility + Security A3 for FacultyEMS_EDU_FACULTY
Enterprise Mobility + Security G3 GCCEMS_GOV
Enterprise Mobility + Security E5EMSPREMIUM
Enterprise Mobility + Security G5 GCCEMSPREMIUM_GOV
Office 365 E3企业包
Office 365 G3 GCCENTERPRISEPACK_GOV
Office 365 E3_USGOV_DODENTERPRISEPACK_USGOV_DOD
Office 365 E3_USGOV_GCCHIGHENTERPRISEPACK_USGOV_GCCHIGH
Office 365 A3 for facultyENTERPRISEPACKPLUS_FACULTY
Office 365 A3 for studentsENTERPRISEPACKPLUS_STUDENT
Office 365 E5企业高级版
Office 365 A5 for facultyENTERPRISEPREMIUM_FACULTY
Office 365 G5 GCC企业PREMIUM_GOV
Office 365 E5 Without Audio ConferencingENTERPRISEPREMIUM_NOPSTNCONF
Office 365 A5 for studentsENTERPRISEPREMIUM_STUDENT
Office 365 E4企业规模
Exchange Online ProtectionEOP_ENTERPRISE
Exchange Enterprise CAL Services (EOP DLP)EOP_ENTERPRISE_PREMIUM
Office 365 Advanced ComplianceEQUIVIO_分析
Office 365 Advanced Compliance for GCCEQUIVIO_ANALYTICS_GOV
Exchange Online EssentialsEXCHANGE_S_ESSENTIALS
Exchange Online Archiving for Exchange Server交换档案馆
Exchange Online Archiving for Exchange OnlineEXCHANGEARCHIVE_ADDON
Exchange Online Kiosk交换台无台
Exchange Online (Plan 2)交换企业
Exchange Online Essentials (ExO P1 Based)交换必需品
Exchange Online (Plan 1)交换标准
Exchange Online (Plan 1) for Alumni with Yammer交换标准_校友
Exchange Online (Plan 1) for GCC交易所标准_GOV
Exchange Online (Plan 1) for StudentsEXCHANGESTANDARD_STUDENT
Exchange Online POP交换电信公司
Microsoft Threat Experts – Experts on Demand专家点播
Power Automate per flow planFLOW_BUSINESS_PROCESS
Microsoft Power Automate FreeFLOW_FREE
Microsoft Power Automate Plan 2流量_P2
Power Automate per user planFLOW_PER_USER
Power Automate per user plan deptFLOW_PER_USER_DEPT
Power Automate per user plan for GovernmentFLOW_PER_USER_GCC
Dynamics 365 Customer Voice Trial表格_PRO
Dynamics 365 Customer Voice Additional ResponsesForms_Pro_AddOn
Dynamics 365 Customer Voice USL表格_Pro_USL
Dynamics 365 GuidesGUIDES_USER
Microsoft 365 E5 SecurityIDENTITY_THREAT_PROTECTION
Microsoft 365 E5 Security for EMS E5IDENTITY_THREAT_PROTECTION_FOR_EMS_E5
Microsoft 365 E5 Compliance信息保护合规性
SharePoint Syntex智能内容服务
IntuneINTUNE_A
Microsoft Intune DeviceINTUNE_A_D
Microsoft Intune Device for GovernmentINTUNE_A_D_GOV
Intune for EducationINTUNE_EDU
Microsoft Intune SMBINTUNE_SMB
Microsoft Imagine AcademyIT_ACADEMY_AD
Office 365 Small Business轻装
Office 365 Small Business PremiumLITEPACK_P2
Microsoft 365 E5 Suite featuresM365_E5_SUITE_COMPONENTS
Microsoft 365 F1M365_F1
Microsoft 365 F1M365_F1_通讯
Microsoft 365 F3 GCCM365_F1_GOV
Microsoft 365 G3 GCCM365_G3_GOV
Microsoft 365 GCC G5M365_G5_GCC
Microsoft 365 Security and Compliance for Firstline WorkersM365_SECURITY_COMPLIANCE_FOR_FLW
Microsoft 365 A1M365EDU_A1
Microsoft 365 A3 for FacultyM365EDU_A3_FACULTY
Microsoft 365 A3 for StudentsM365EDU_A3_STUDENT
Microsoft 365 A3 for students use benefitM365EDU_A3_STUUSEBNFT
Microsoft 365 A3 – Unattended License for students use benefitM365EDU_A3_STUUSEBNFT_RPA1
Microsoft 365 A5 for FacultyM365EDU_A5_FACULTY
Microsoft 365 A5 without Audio Conferencing for students use benefitM365EDU_A5_NOPSTNCONF_STUUSEBNFT
Microsoft 365 A5 for StudentsM365EDU_A5_STUDENT
Microsoft 365 A5 for students use benefitM365EDU_A5_STUUSEBNFT
Microsoft Teams Shared DevicesMCOCAP
Microsoft Teams Shared Devices for GCCMCOCAP_GOV
Microsoft Teams Phone Standard平均COEV
Microsoft Teams Phone Standard for DODMCOEV_DOD
Microsoft Teams Phone Standard for FacultyMCOEV_FACULTY
Microsoft Teams Phone Standard for GCCHIGHMCOEV_GCCHIGH
Microsoft Teams Phone Standard for GCCMCOEV_GOV
Microsoft Teams Phone Standard for StudentsMCOEV_学生
Microsoft Teams Phone Standard for TELSTRAMCOEV_澳洲电信
Microsoft Teams Phone Standard_USGOV_DODMCOEV_USGOV_DOD
Microsoft Teams Phone Standard_USGOV_GCCHIGHMCOEV_USGOV_GCCHIGH
Microsoft Teams Phone Standard for Small and Medium BusinessMCOEVSMB_1
Skype for Business Online (Plan 1)MCIMP
Microsoft 365 Audio Conferencing Pay-Per-Minute – EA麦科米塔克佩
Microsoft 365 Audio Conferencing麦克梅特病毒
Microsoft 365 Audio Conferencing for GCCMCOMEETADV_GOV
Microsoft 365 Domestic Calling Plan for GCCMCOPSTN_1_GOV
Microsoft 365 Domestic Calling Plan (120 Minutes)MCOPSTN_5
Skype for Business PSTN Domestic CallingMCOPSTN1
Skype for Business PSTN Domestic and International CallingMCOPSTN2
Skype for Business PSTN Domestic Calling (120 Minutes)MCOPSTN5
Communications CredtisMCOPSTNC
TELSTRA Calling for O365MCOPSTNEAU2
Skype for Business PSTN Usage Calling PlanMCOPSTNPP
Skype for Business Online (Plan 2)麦克标准
Teams Phone with Calling PlanMCOTEAMS_ESSENTIALS
Microsoft Defender for Endpoint ServerMDATP_服务器
Microsoft Defender for Endpoint P2_XPLATMDATP_XPLAT
Microsoft Teams Rooms Standard会议室
Microsoft Teams Rooms Standard without Audio ConferencingMEETING_ROOM_NOAUDIOCONF
Microsoft Azure Multi-Factor AuthenticationMFA_独立
Microsoft 365 E3 (500 seats min)_HUB微软_365_E3
Microsoft 365 E5 (500 seats min)_HUB微软_365_E5
Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUBMicrosoft_365_E5_without_Audio_Conferencing
Microsoft Business Center微软_商业_中心
App governance add-on to Microsoft Defender for Cloud AppsMicrosoft_Cloud_App_Security_App_Governance_Add_On
Microsoft Intune SuiteMicrosoft_Intune_Suite
Dynamics 365 Remote AssistMICROSOFT_REMOTE_ASSIST
Dynamics 365 Remote Assist HoloLensMICROSOFT_REMOTE_ASSIST_HOLOLENS
Microsoft Teams Audio Conferencing select dial-outMicrosoft_Teams_Audio_Conferencing_select_dial_out
Microsoft Teams PremiumMicrosoft_Teams_Premium
Microsoft Teams Rooms BasicMicrosoft_Teams_Rooms_Basic
Microsoft Teams Rooms Basic without Audio ConferencingMicrosoft_Teams_Rooms_Basic_without_Audio_Conferencing
Microsoft Teams Rooms ProMicrosoft_Teams_Rooms_Pro
Microsoft Teams Rooms Pro without Audio ConferencingMicrosoft_Teams_Rooms_Pro_without_Audio_Conferencing
Office 365 Midsize Business中型背包
Microsoft Teams TrialMS_TEAMS_IW
Teams Rooms Premium地铁_PREM
Nonprofit PortalNONPROFIT_PORTAL
Microsoft 365 Apps for BusinessO365_业务
Microsoft 365 Business BasicO365_BUSINESS_ESSENTIALS
Microsoft 365 Business StandardO365_BUSINESS_PREMIUM
Microsoft 365 Apps for enterprise (device)OFFICE_PROPLUS_DEVICE1
Multi-Geo Capabilities in Office 365OFFICE365_MULTIGEO
Microsoft 365 Apps for Enterprise办公室订阅
Microsoft 365 Apps for FacultyOFFICESUBSCRIPTION_FACULTY
Microsoft 365 Apps for Students办公室订阅_学生
Power BI Premium P1PBI_PREMIUM_P1_ADDON
Power BI Premium Per UserPBI_PREMIUM_PER_USER
Power BI Premium Per User Add-OnPBI_PREMIUM_PER_USER_ADDON
Power BI Premium Per User DeptPBI_PREMIUM_PER_USER_DEPT
Microsoft Teams Phone Resource AccountPHONESYSTEM_VIRTUALUSER
Microsoft Teams Phone Resource Account for GCCPHONESYSTEM_VIRTUALUSER_GOV
Power BI for Office 365 Add-OnPOWER_BI_ADDON
Power BIPOWER_BI_INDIVIDUAL_USER
Power BI ProPOWER_BI_PRO
Power BI Pro CEPOWER_BI_PRO_CE
Power BI Pro DeptPOWER_BI_PRO_DEPT
Power BI Pro for FacultyPOWER_BI_PRO_FACULTY
Power BI (free)POWER_BI_STANDARD
Power Pages vTrial for MakersPower_Pages_vTrial_for_Makers
Microsoft Power Apps for DeveloperPOWERAPPS_DEV
Power Apps and Logic FlowsPOWERAPPS_INDIVIDUAL_USER
PowerApps Plan 1 for GovernmentPOWERAPPS_P1_GOV
Power Apps per app planPOWERAPPS_PER_APP
PowerApps per app baseline accessPOWERAPPS_PER_APP_IW
Power Apps per app plan (1 app or portal)POWERAPPS_PER_APP_NEW
Power Apps per user planPOWERAPPS_PER_USER
Power Apps per user plan for GovernmentPOWERAPPS_PER_USER_GCC
Power Apps Portals login capacity add-on Tier 2 (10 unit min)POWERAPPS_PORTALS_LOGIN_T2
Power Apps Portals login capacity add-on Tier 2 (10 unit min) for GovernmentPOWERAPPS_PORTALS_LOGIN_T2_GCC
Power Apps Portals login capacity add-on Tier 3 (50 unit min)POWERAPPS_PORTALS_LOGIN_T3
Power Apps Portals page view capacity add-onPOWERAPPS_PORTALS_PAGEVIEW
Power Apps Portals page view capacity add-on for GovernmentPOWERAPPS_PORTALS_PAGEVIEW_GCC
Microsoft Power Apps Plan 2 TrialPOWERAPPS_病毒
Power Automate per user with attended RPA planPOWERAUTOMATE_ATTENDED_RPA
Power Automate unattended RPA add-onPOWERAUTOMATE_UNATTENDED_RPA
Power BI Pro for GCCPOWERBI_PRO_GOV
Microsoft Power Apps Plan 2 (Qualified Offer)POWERFLOW_P2
Privacy Management - risk隐私_管理_风险
Privacy Management – risk for EDUPRIVACY_MANAGEMENT_RISK_EDU
Privacy Management – risk GCCPRIVACY_MANAGEMENT_RISK_GCC
Privacy Management – risk_USGOV_DODPRIVACY_MANAGEMENT_RISK_USGOV_DOD
Privacy Management – risk_USGOV_GCCHIGHPRIVACY_MANAGEMENT_RISK_USGOV_GCCHIGH
Privacy Management – subject rights request (1) for EDUPRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_1_EDU_V2
Privacy Management – subject rights request (1)PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_1_V2
Privacy Management – subject rights request (1) GCCPRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_1_V2_GCC
Privacy Management – subject rights request (1) USGOV_DODPRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_1_V2_USGOV_DOD
Privacy Management – subject rights request (1) USGOV_GCCHIGHPRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_1_V2_USGOV_GCCHIGH
Privacy Management – subject rights request (10) for EDUPRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_10_EDU_V2
Privacy Management – subject rights request (10)PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_10_V2
Privacy Management – subject rights request (10) GCCPRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_10_V2_GCC
Privacy Management – subject rights request (10) USGOV_DODPRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_10_V2_USGOV_DOD
Privacy Management – subject rights request (10) USGOV_GCCHIGHPRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_10_V2_USGOV_GCCHIGH
Privacy Management – subject rights request (100) for EDUPRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_100_EDU_V2
Privacy Management – subject rights request (100)PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_100_V2
Privacy Management – subject rights request (100) GCCPRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_100_V2_GCC
Privacy Management – subject rights request (100) USGOV_DODPRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_100_V2_USGOV_DOD
Privacy Management – subject rights request (100) USGOV_GCCHIGHPRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_100_V2_USGOV_GCCHIGH
Privacy Management – subject rights request (50)PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_50
Privacy Management – subject rights request (50) for EDUPRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_50_EDU_V2
Privacy Management – subject rights request (50)PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_50_V2
Dynamics 365 Business Central for IWsPROJECT_MADEIRA_PREVIEW_IW_SKU
Project Plan 1项目_P1
Project Plan 1 (for Department)PROJECT_PLAN1_DEPT
Project Plan 3 (for Department)PROJECT_PLAN3_DEPT
Project for Office 365项目客户
Project Online Essentials项目要点
Project Online Essentials for FacultyPROJECTESSENTIALS_FACULTY
Project Online Essentials for GCCPROJECTESSENTIALS_GOV
Project Online Premium Without Project ClientPROJECTONLINE_PLAN_1
Project Online With Project for Office 365PROJECTONLINE_PLAN_2
Project Online Premium项目溢价
Project Plan 5 for GCC项目PREMIUM_GOV
Project Plan 3专业项目
Project Plan 3 for Faculty项目专业_教师
Project Plan 3 for GCC项目专业_GOV
Azure Information Protection Plan 1版权管理
Rights Management Adhoc权限管理_ADHOC
Rights Management Service Basic Content Protection均方根专用集成电路
SharePoint Online (Plan 2)共享点企业
SharePoint Online (Plan 1)SHAREPOINT标准
Office 365 Extra File StorageSHAREPOINT存储
Office 365 Extra File Storage for GCCSHAREPOINTSTORAGE_GOV
Dynamics 365 for TalentSKU_Dynamics_365_for_HCM_试用
Business Apps (free)SMB_应用程序
Microsoft 365 Apps for Business中小企业_业务
Microsoft 365 Business BasicSMB_BUSINESS_ESSENTIALS
Microsoft 365 Business Standard – Prepaid LegacySMB_BUSINESS_PREMIUM
Dynamics 365 AI for Market Insights (Preview)SOCIAL_ENGAGEMENT_APP_USER
Microsoft 365 Business PremiumSPB
Microsoft 365 E3SPE_E3
Microsoft 365 E3 – Unattended LicenseSPE_E3_RPA1
Microsoft 365 E3_USGOV_DODSPE_E3_USGOV_DOD
Microsoft 365 E3_USGOV_GCCHIGHSPE_E3_USGOV_GCCHIGH
Microsoft 365 E5SPE_E5
Microsoft 365 E5 with Calling MinutesSPE_E5_CALLINGMINUTES
Microsoft 365 E5 without Audio ConferencingSPE_E5_NOPSTNCONF
Microsoft 365 F3SPE_F1
Microsoft 365 F5 Compliance Add-onSPE_F5_COMP
Microsoft 365 F5 Compliance Add-on AR (DOD)_USGOV_DODSPE_F5_COMP_AR_D_USGOV_DOD
Microsoft 365 F5 Compliance Add-on AR_USGOV_GCCHIGHSPE_F5_COMP_AR_USGOV_GCCHIGH
Microsoft 365 F5 Compliance Add-on GCCSPE_F5_COMP_GCC
Microsoft 365 F5 Security Add-onSPE_F5_SEC
Microsoft 365 F5 Security + Compliance Add-onSPE_F5_SECCOMP
App Connect IWSPZA_IW
Office 365 E1标准包
Office 365 G1 GCC标准包_GOV
Office 365 E2标准套装
Office 365 A1 for facultySTANDARDWOFFPACK_FACULTY
Office 365 A1 Plus for facultySTANDARDWOFFPACK_IW_FACULTY
Office 365 A1 Plus for students标准WOFFPACK_IW_STUDENT
Office 365 A1 for studentsSTANDARDWOFFPACK_学生
Microsoft Stream溪流
Microsoft Stream Plan 2流_P2
Microsoft Stream Storage Add-On (500 GB)STREAM_STORAGE
Microsoft Teams Commercial Cloud团队_商业_试用
Microsoft Teams Essentials团队_Ess
Microsoft Teams Exploratory团队探索
Microsoft Teams (Free)TEAM_FREE
Microsoft Defender for Office 365 (Plan 2)威胁情报
Microsoft Defender for Office 365 (Plan 2) GCCTHREAT_INTELLIGENCE_GOV
Viva Topics主题_经验
Microsoft Defender Vulnerability Management Add-onTVM_Premium_Add_on
Universal Print通用_打印
Power Virtual Agent虚拟_代理_基地
Power Virtual Agent User LicenseVIRTUAL_AGENT_USL
Visio Plan 1VISIO_PLAN1_DEPT
Visio Plan 2VISIO_PLAN2_DEPT
Visio Online Plan 2可视客户端
Visio Plan 2 for GCCVISIOCLIENT_GOV
Visio Online Plan 1VISIOONLINE_PLAN1
Microsoft Viva Suite维瓦
OneDrive for Business (Plan 2)韦科驱动企业
OneDrive for Business (Plan 1)韦科驱动标准
Microsoft Defender for EndpointWIN_DEF_ATP
Windows 10/11 Enterprise E5 (Original)WIN_ENT_E5
Windows 10 Enterprise A3 for facultyWIN10_ENT_A3_FAC
Windows 10 Enterprise A3 for studentsWIN10_ENT_A3_STU
Windows 10 Enterprise E3WIN10_PRO_ENT_SUB
Windows 10 Enterprise E3WIN10_VDA_E3
Windows 10 Enterprise E5WIN10_VDA_E5
Windows 365 Shared Use 2 vCPU 4 GB 128 GBWindows_365_S_2vCPU_4GB_128GB
Windows 365 Shared Use 2 vCPU 4 GB 256 GBWindows_365_S_2vCPU_4GB_256GB
Windows 365 Shared Use 2 vCPU 4 GB 64 GBWindows_365_S_2vCPU_4GB_64GB
Windows 365 Shared Use 2 vCPU 8 GB 128 GBWindows_365_S_2vCPU_8GB_128GB
Windows 365 Shared Use 2 vCPU 8 GB 256 GBWindows_365_S_2vCPU_8GB_256GB
Windows 365 Shared Use 4 vCPU 16 GB 128 GBWindows_365_S_4vCPU_16GB_128GB
Windows 365 Shared Use 4 vCPU 16 GB 256 GBWindows_365_S_4vCPU_16GB_256GB
Windows 365 Shared Use 4 vCPU 16 GB 512 GBWindows_365_S_4vCPU_16GB_512GB
Windows 365 Shared Use 8 vCPU 32 GB 128 GBWindows_365_S_8vCPU_32GB_128GB
Windows 365 Shared Use 8 vCPU 32 GB 256 GBWindows_365_S_8vCPU_32GB_256GB
Windows 365 Shared Use 8 vCPU 32 GB 512 GBWindows_365_S_8vCPU_32GB_512GB
Windows Store for BusinessWINDOWS_STORE
Windows 10 Enterprise E5 Commercial (GCC Compatible)WINE5_GCC_COMPAT
Microsoft Workplace Analytics工作场所_分析
Windows Store for Business EDU FacultyWSFB_EDU_FACULTY
Office 365 服务计划名称
Office 365 服务计划名称也是如此。例如,要查看许可计划中是否包含 Exchange Online(计划 2),您需要查找“EXCHANGE_S_ENTERPRISE”等。
您可以在此处查看 Office 365 服务计划名称的完整列表:
Office 365 服务计划名称
Microsoft Azure Active Directory BasicAAD_BASIC
Azure Active Directory Basic for EducationAAD_BASIC_EDU
Azure Active Directory for EducationAAD_EDU
Azure Active Directory Premium P1AAD_PREMIUM
Azure Active Directory Premium P2AAD_PREMIUM_P2
Azure Active DirectoryAAD_SMB
SecOps Investigation for MDIADALLOM_FOR_AATP
Cloud App Security DiscoveryADALLOM_S_DISCOVERY
Office 365 Cloud App SecurityADALLOM_S_O365
Microsoft Cloud App SecurityADALLOM_S_STANDALONE
Microsoft Defender for Cloud Apps for DODADALLOM_S_STANDALONE_DOD
Microsoft Defender for IdentityATA
Microsoft Defender for Office 365 (Plan 1)ATP_ENTERPRISE
Microsoft Defender for Office 365 (Plan 1) for GovernmentATP_ENTERPRISE_GOV
Power BI Pro for GovernmentBI_AZURE_P_2_GOV
Power BI (free)BI_AZURE_P0
Microsoft Power BI Reporting and Analytics Plan 1BI_AZURE_P1
Power BI ProBI_AZURE_P2
Power BI Premium Per UserBI_AZURE_P3
Data Loss PreventionBPOS_S_DlpAddOn
To-Do (Plan 1)BPOS_S_TODO_1
To-Do (Plan 2)BPOS_S_TODO_2
To-Do (Plan 3)BPOS_S_TODO_3
To-Do (Firstline)BPOS_S_TODO_FIRSTLINE
Dynamics 365 AI for Customer Service Virtual Agents ViralCCIBOTS_PRIVPREV_VIRAL
Common Data Service Attended RPACDS_ATTENDED_RPA
Common Data Service for Customer Insights TrialCDS_CUSTOMER_INSIGHTS_TRIAL
Common Data Service for Apps Database CapacityCDS_DB_CAPACITY
Common Data Service for Apps Database Capacity for GovernmentCDS_DB_CAPACITY_GOV
Common Data Service for Apps File CapacityCDS_文件_容量
Common data service for Flow per business process planCDS_Flow_Business_Process
Common Data ServiceCDS_FORM_PRO_USL
Common Data Service for Apps Log CapacityCDS_LOG_CAPACITY
Common Data Service for SharePoint SyntexCDS_O365_E5_KM
Common Data Service for TeamsCDS_O365_F1
Common Data Service for Teams F1 GCCCDS_O365_F1_GCC
Common Data Service for Teams P1CDS_O365_P1
Common Data Service for Teams P1 GCCCDS_O365_P1_GCC
Common Data Service for TeamsCDS_O365_P2
Common Data Service for Teams P2 GCCCDS_O365_P2_GCC
Common Data Service for TeamsCDS_O365_P3
Common Data Service for TeamsCDS_O365_P3_GCC
CDS PowerApps per app planCDS_PER_APP
CDS Per app baseline accessCDS_PER_APP_IWTRIAL
Common Data Service Power Apps Portals Login CapacityCDS_POWERAPPS_PORTALS_LOGIN
Common Data Service Power Apps Portals Login Capacity for GCCCDS_POWERAPPS_PORTALS_LOGIN_GCC
CDS PowerApps Portals page view capacity add-onCDS_POWERAPPS_PORTALS_PAGEVIEW
CDS PowerApps Portals page view capacity add-on for GCCCDS_POWERAPPS_PORTALS_PAGEVIEW_GCC
Common Data Service for Remote AssistCDS_REMOTE_ASSIST
Common Data Service Unattended RPACDS_UNATTENDED_RPA
Common Data Service for Virtual Agent BaseCDS_VIRTUAL_AGENT_BASE
Common Data ServiceCDS_VIRTUAL_AGENT_USL
AI Builder capacity add-onCDSA容量
AI Builder capacity Per App add-onCDSAICAPACITY_PERAPP
AI Builder capacity Per User add-onCDSAICAPACITY_PERUSER
AI Builder capacity Per User add-onCDSAICAPACITY_PERUSER_NEW
Microsoft Communications Compliance通讯_合规性
Microsoft Communications DLP通讯_DLP
Compliance Manager Premium Assessment Add-OnCOMPLIANCE_MANAGER_PREMIUM_ASSESSMENT_ADDON
Information Protection and Governance Analytics – Premium内容资源管理器
Information Protection and Governance Analytics - StandardContentExplorer_Standard
Microsoft Viva Topics皮质
Windows 365 Enterprise 2 vCPU 4 GB 128 GBCPC_1
Windows 365 Enterprise 2 vCPU 8 GB 128 GBCPC_2
Windows 365 Business 1 vCPU 2 GB 64 GBCPC_B_1C_2RAM_64GB
Windows 365 Business 2 vCPU 4 GB 128 GBCPC_B_2C_4RAM_128GB
Windows 365 Business 2 vCPU 4 GB 256 GBCPC_B_2C_4RAM_256GB
Windows 365 Business 2 vCPU 4 GB 64 GBCPC_B_2C_4RAM_64GB
Windows 365 Business 2 vCPU 8 GB 256 GBCPC_B_2C_8RAM_256GB
Windows 365 Business 4 vCPU 16 GB 128 GBCPC_B_4C_16RAM_128GB
Windows 365 Business 4 vCPU 16 GB 256 GBCPC_B_4C_16RAM_256GB
Windows 365 Business 4 vCPU 16 GB 512 GBCPC_B_4C_16RAM_512GB
Windows 365 Business 8 vCPU 32 GB 128 GBCPC_B_8C_32RAM_128GB
Windows 365 Business 8 vCPU 32 GB 256 GBCPC_B_8C_32RAM_256GB
Windows 365 Business 8 vCPU 32 GB 512 GBCPC_B_8C_32RAM_512GB
Windows 365 Enterprise 1 vCPU 2 GB 64 GBCPC_E_1C_2GB_64GB
Windows 365 Enterprise 2 vCPU 4 GB 256 GBCPC_E_2C_4GB_256GB
Windows 365 Enterprise 2 vCPU 4 GB 64 GBCPC_E_2C_4GB_64GB
Windows 365 Enterprise 2 vCPU 8 GB 256 GBCPC_E_2C_8GB_256GB
Windows 365 Enterprise 4 vCPU 16 GB 128 GBCPC_E_4C_16GB_128GB
Windows 365 Enterprise 4 vCPU 16 GB 256 GBCPC_E_4C_16GB_256GB
Windows 365 Enterprise 4 vCPU 16 GB 512 GBCPC_E_4C_16GB_512GB
Windows 365 Enterprise 8 vCPU 32 GB 128 GBCPC_E_8C_32GB_128GB
Windows 365 Enterprise 8 vCPU 32 GB 256 GBCPC_E_8C_32GB_256GB
Windows 365 Enterprise 8 vCPU 32 GB 512 GBCPC_E_8C_32GB_512GB
Windows 365 Shared Use 2 vCPU 4 GB 128 GBCPC_S_2C_4GB_128GB
Windows 365 Shared Use 2 vCPU 4 GB 256 GBCPC_S_2C_4GB_256GB
Windows 365 Shared Use 2 vCPU 4 GB 64 GBCPC_S_2C_4GB_64GB
Windows 365 Shared Use 2 vCPU 8 GB 128 GBCPC_S_2C_8GB_128GB
Windows 365 Shared Use 2 vCPU 8 GB 256 GBCPC_S_2C_8GB_256GB
Windows 365 Shared Use 4 vCPU 16 GB 128 GBCPC_S_4C_16GB_128GB
Windows 365 Shared Use 4 vCPU 16 GB 256 GBCPC_S_4C_16GB_256GB
Windows 365 Shared Use 4 vCPU 16 GB 512 GBCPC_S_4C_16GB_512GB
Windows 365 Shared Use 8 vCPU 32 GB 128 GBCPC_S_8C_32GB_128GB
Windows 365 Shared Use 8 vCPU 32 GB 256 GBCPC_S_8C_32GB_256GB
Windows 365 Shared Use 8 vCPU 32 GB 512 GBCPC_S_8C_32GB_512GB
Windows 365 Business 2 vCPU, 8 GB, 128 GBCPC_SS_2
CRM Hybrid ConnectorCRM_HYBRIDCONNECTOR
Microsoft Dynamics CRM Online – Portal Add-OnCRM_ONLINE_PORTAL
Microsoft Dynamics CRM Online Instance客户关系管理
Microsoft Dynamics CRM Online BasicCRM计划2
Microsoft Dynamics CRM Online Professional客户关系管理标准
Microsoft Dynamics CRM Online Storage Add-OnCRM存储
Microsoft Dynamics CRM Online Additional Test InstanceCRM测试实例
Microsoft Customer KeyCUSTOMER_KEY
Dynamics Customer Voice Add-OnCUSTOMER_VOICE_ADDON
Dynamics 365 Customer Voice Base Plan客户声音库
Customer Voice for Dynamics 365 vTrialCUSTOMER_VOICE_DYN365_VIRAL_TRIAL
Asset Maintenance Add-inD365_SCM资产
Dynamics 365 Customer Service Insights for CE PlanD365_CSI_EMBED_CE
Dynamics 365 Customer Service Insights for CS EnterpriseD365_CSI_EMBED_CSEnterprise
Dynamics 365 for Customer Service Enterprise AttachD365_CUSTOMER_SERVICE_ENT_ATTACH
Dynamics 365 for Field Service AttachD365_FIELD_SERVICE_ATTACH
Microsoft Dynamics 365 for FinanceD365_财经
Iot Intelligence Add-in for D365 Supply Chain ManagementD365_IOTFORSCM
IoT Intelligence Add-in Additional MachinesD365_IOTFORSCM_ADDITIONAL
Dynamics 365 Project OperationsD365_项目运营
Dynamics 365 Project Operations CDSD365_ProjectOperationsCDS
Dynamics 365 for Sales Enterprise AttachD365_SALES_ENT_ATTACH
Dynamics 365 for Sales Pro AttachD365_SALES_PRO_ATTACH
Dynamics 365 for Sales Professional TrialD365_SALES_PRO_IW
Dynamics 365 for Sales Professional TrialD365_SALES_PRO_IW_试用
Dynamics 365 for Supply Chain ManagementD365_单片机
Microsoft Data Investigations数据调查
Dataverse for PADDATAVERSE_FOR_POWERAUTOMATE_DESKTOP
Dataverse for Power Apps per appDATAVERSE_POWERAPPS_PER_APP_NEW
Common Data ServiceDDYN365_CDS_DYN_P2
Microsoft StaffHub无办公桌
Microsoft Relationship Sales solutionDYN365_企业_关系_销售
Dynamics 365 AI for Customer Service TrialDYN365_AI_SERVICE_INSIGHTS
Dynamics 365 Business Central Database CapacityDYN365_BUSCENTRAL_DB_CAPACITY
Dynamics 365 Business Central Additional Environment AddonDYN365_BUSCENTRAL_ENVIRONMENT
Dynamics 365 Business Central PremiumDYN365_BUSCENTRAL_PREMIUM
Dynamics 365 MarketingDYN365_BUSINESS_营销
Common Data Service for CCI BotsDYN365_CDS_CCI_BOTS
Common Data Service – DEV ViralDYN365_CDS_DEV_VIRAL
Common Data ServiceDYN365_CDS_DYN_APPS
Common Data Service for Dynamics 365 FinanceDYN365_CDS_FINANCE
Common Data Service for Project P1DYN365_CDS_FOR_PROJECT_P1
Common Data ServiceDYN365_CDS_FORMS_PRO
Common Data ServiceDYN365_CDS_GUIDES
Common Data ServiceDYN365_CDS_O365_F1
Common Data Service – O365 F1DYN365_CDS_O365_F1_GCC
Common Data Service – O365 P1DYN365_CDS_O365_P1
Common Data Service – O365 P1 GCCDYN365_CDS_O365_P1_GCC
Common Data ServiceDYN365_CDS_O365_P2
Common Data Service – O365 P2 GCCDYN365_CDS_O365_P2_GCC
Common Data ServiceDYN365_CDS_O365_P3
Common Data ServiceDYN365_CDS_O365_P3_GCC
Common Data Service for GovernmentDYN365_CDS_P1_GOV
Common Data Service – P2DYN365_CDS_P2
Common Data Service for GovernmentDYN365_CDS_P2_GOV
Common Data Service for ProjectDYN365_CDS_PROJECT
Common Data Service for Dynamics 365 Supply Chain ManagementDYN365_CDS_供应链管理
Common Data Service – ViralDYN365_CDS_VIRAL
Dynamics 365 for Customer Service ChatDYN365_CS_聊天
Dynamics 365 Customer Service Chat Application IntegrationDYN365_CS_CHAT_FPA
Dynamics 365 Customer Service Enterprise vTrialDYN365_CS_ENTERPRISE_VIRAL_TRIAL
Dynamics 365 Customer Service Digital Messaging vTrialDYN365_CS_MESSAGING_VIRAL_TRIAL
Dynamics 365 Customer Service Voice vTrialDYN365_CS_VOICE_VIRAL_TRIAL
Dynamics 365 Customer Insights Engagement Insights ViralDYN365_CUSTOMER_INSIGHTS_ENGAGEMENT_INSIGHTS_BASE_TRIAL
Dynamics 365 Customer Insights Viral PlanDYN365_CUSTOMER_INSIGHTS_VIRAL
Dynamics 365 for Customer Service ProDYN365_CUSTOMER_SERVICE_PRO
Dynamics 365 for Case ManagementDYN365_ENTERPRISE_CASE_MANAGEMENT
Microsoft Social Engagement – Service DiscontinuationDYN365_ENTERPRISE_CUSTOMER_SERVICE
Dynamics 365 for Field ServiceDYN365_ENTERPRISE_FIELD_SERVICE
Dynamics 365 P1DYN365_ENTERPRISE_P1
Dynamics 365 P1 Trial for Information WorkersDYN365_ENTERPRISE_P1_IW
Dynamics 365 for SalesDYN365_ENTERPRISE_SALES
Dynamics 365 for Talent – Attract Experience Team MemberDYN365_Enterprise_Talent_Attract_TeamMember
Dynamics 365 for Talent – Onboard ExperienceDYN365_Enterprise_Talent_Onboard_TeamMember
Dynamics 365 for Team MembersDYN365_ENTERPRISE_TEAM_MEMBERS
Dynamics 365 Business Central External AccountantDYN365_FINANCIALS_ACCOUNTANT
Dynamics 365 for Business Central EssentialsDYN365_FINANCIALS_BUSINESS
Dynamics 365 for Team MembersDYN365_FINANCIALS_TEAM_MEMBERS
Dynamics 365 Field Service Enterprise vTrialDYN365_FS_ENTERPRISE_VIRAL_TRIAL
Dynamics 365 for Marketing 50K Addnl ContactsDYN365_MARKETING_50K_CONTACT_ADDON
Dynamics 365 for MarketingDYN365_MARKETING_APP
Dynamics 365 for Marketing Additional ApplicationDYN365_MARKETING_APPLICATION_ADDON
Dynamics 365 for Marketing MSE UserDYN365_MARKETING_MSE_USER
Dynamics 365 Marketing Sandbox Application AddOnDYN365_MARKETING_SANDBOX_APPLICATION_ADDON
Dynamics 365 for Marketing USLDYN365_MARKETING_USER
Dynamics 365 for Finance and Operations Enterprise edition – Regulatory ServiceDYN365_REGULATORY_SERVICE
Dynamics 365 for Retail DeviceDYN365_零售_设备
Dynamics 365 Sales Enterprise vTrialDYN365_SALES_ENTERPRISE_VIRAL_TRIAL
Dynamics 365 AI for Sales (Embedded)DYN365_SALES_INSIGHTS
Dynamics 365 Sales Insights vTrialDYN365_SALES_INSIGHTS_VIRAL_TRIAL
Dynamics 365 for Sales ProfessionalDYN365_SALES_PRO
Dynamics 365 for TalentDYN365_TALENT_ENTERPRISE
Dynamics 365 Team MembersDYN365_TEAM_MEMBERS
Microsoft InvoicingDYN365BC_MS_发票
Dynamics 365 for HCM TrialDynamics_365_for_HCM_Trial
Dynamics 365 for OperationsDynamics_365_for_Operations
Dynamics 365 for Operations non-production multi-box instance for standard acceptance testing (Tier 2)Dynamics_365_for_Operations_Sandbox_Tier2
Dynamics 365 for Operations Enterprise Edition – Sandbox Tier 4:Standard Performance TestingDynamics_365_for_Operations_Sandbox_Tier4
Dynamics 365 for Operations Team MembersDYNAMICS_365_FOR_OPERATIONS_TEAM_MEMBERS
Dynamics 365 for Operations DevicesDynamics_365_for_OperationsDevices
Dynamics 365 for RetailDynamics_365_for_Retail
Dynamics 365 for Retail Team MembersDynamics_365_for_Retail_Team_members
Dynamics 365 for Talent Team MembersDynamics_365_for_Talent_Team_members
Dynamics 365 for Talent: AttractDynamics_365_Hiring_Free_PLAN
Dynamics 365 for Talent: OnboardDynamics_365_Onboarding_Free_PLAN
Dynamics 365 for Talent: OnboardDynamics_365_Talent_Onboard
Dynamics 365 Customer Service Insights vTrialDYNB365_CSI_VIRAL_TRIAL
Education Analytics教育分析P1
Exchange Online ProtectionEOP_ENTERPRISE
Exchange Enterprise CAL Services (EOP DLP)EOP_ENTERPRISE_PREMIUM
Office 365 Advanced eDiscoveryEQUIVIO_分析
Office 365 Advanced eDiscovery for GovernmentEQUIVIO_ANALYTICS_GOV
Dynamics 365 Operations Trial EnvironmentERP_试用_实例
Microsoft Excel Advanced AnalyticsEXCEL_PREMIUM
Microsoft MyAnalytics (Full)交换分析
Microsoft MyAnalytics for Government (Full)EXCHANGE_ANALYTICS_GOV
Exchange Online POP交换_B_标准
Exchange Foundation for GovernmentEXCHANGE_FOUNDATION_GOV
Exchange Online (P1)EXCHANGE_L_STANDARD
Exchange Online Archiving for Exchange Server交换_S_存档
Exchange Online Archiving for Exchange OnlineEXCHANGE_S_ARCHIVE_ADDON
Exchange Online KIOSKEXCHANGE_S_DESKLESS
Exchange Online (Kiosk) for GovernmentEXCHANGE_S_DESKLESS_GOV
Exchange Online (Plan 2)EXCHANGE_S_ENTERPRISE
Exchange Online (Plan 2) for GovernmentEXCHANGE_S_ENTERPRISE_GOV
Exchange EssentialsEXCHANGE_S_ESSENTIALS
Exchange FoundationEXCHANGE_S_FOUNDATION
Exchange Foundation for GovernmentEXCHANGE_S_FOUNDATION_GOV
Exchange Online (Plan 1)EXCHANGE_S_STANDARD
Exchange Online (Plan 1) for GovernmentEXCHANGE_S_STANDARD_GOV
Exchange Online PlanEXCHANGE_S_STANDARD_MIDMARKET
Exchange Online Multi-GeoEXCHANGEONLINE_MULTIGEO
Microsoft Threat Experts – Experts on Demand专家点播
Flow per business process planFLOW_BUSINESS_PROCESS
Flow for CCI BotsFLOW_CCI_BOTS
Power Automate for Customer Service ProFLOW_CUSTOMER_SERVICE_PRO
Flow for DeveloperFLOW_DEV_VIRAL
Flow for Dynamics 365FLOW_DYN_APPS
Flow for Dynamics 365FLOW_DYN_P2
Power Automate for Dynamics 365FLOW_DYN_TEAM
Flow for ProjectFLOW_FOR_PROJECT
Power Automate for Dynamics 365 Customer VoiceFLOW_FORMS_PRO
Flow for Office 365流量_O365_P1
Power Automate for Office 365 for GovernmentFLOW_O365_P1_GOV
Power Automate for Office 365流量_O365_P2
Power Automate for Office 365 for GovernmentFLOW_O365_P2_GOV
Power Automate for Office 365FLOW_O365_P3
Power Automate for Office 365 for GovernmentFLOW_O365_P3_GOV
Power Automate for Office 365 F3FLOW_O365_S1
Power Automate for Office 365 F3 for GovernmentFLOW_O365_S1_GOV
Power Automate (Plan 1) for GovernmentFLOW_P1_GOV
Power Automate (Plan 2)流量_P2
Flow FreeFLOW_P2_病毒
Flow P2 ViralFLOW_P2_VIRAL_REAL
Power Automate for Power Apps per App PlanFlow_Per_APP
Flow per app baseline accessFlow_Per_APP_IWTRIAL
Flow per user planFLOW_PER_USER
Power Automate per User Plan for GovernmentFLOW_PER_USER_GCC
Power Automate for Power Apps per User PlanFlow_PowerApps_PerUser
Power Automate for Power Apps per User Plan for GCCFlow_PowerApps_PerUser_GCC
Power Automate for Virtual AgentFLOW_VIRTUAL_AGENT_BASE
Power Automate for Virtual AgentFLOW_VIRTUAL_AGENT_USL
Forms for Government (Plan E1)FORMS_GOV_E1
ForMS for Government (Plan E3)FORMS_GOV_E3
Microsoft Forms for Government (Plan E5)FORMS_GOV_E5
Forms for Government (Plan F1)FORMS_GOV_F1
Microsoft ForMS (Plan E1)FORMS_PLAN_E1
Microsoft Forms (Plan E3)FORMS_PLAN_E3
Microsoft Forms (Plan E5)FORMS_PLAN_E5
Microsoft Forms (Plan F1)FORMS_PLAN_K
Dynamics 365 Customer Voice表格_PRO
Microsoft Dynamics 365 Customer Voice Add-onForms_Pro_AddOn
Microsoft Dynamics 365 Customer Voice for Customer Engagement Plan表格_Pro_CE
Microsoft Dynamics 365 Customer Voice for Customer InsightsForms_Pro_Customer_Insights
Microsoft Dynamics 365 Customer Voice for Field Service表格_Pro_FS
Microsoft Dynamics 365 Customer Voice for Marketing表格_专业_营销
Microsoft Dynamics 365 Customer Voice for Marketing ApplicationForms_Pro_Marketing_App
Microsoft Dynamics 365 Customer Voice for Relationship SalesForms_Pro_Relationship_Sales
Microsoft Dynamics 365 Customer Voice for Sales EnterpriseForms_Pro_SalesEnt
Microsoft Dynamics 365 Customer Voice for Customer Service Enterprise表单_专业_服务
Microsoft Dynamics 365 Customer Voice USL表格_Pro_USL
Graph Connectors Search with IndexGRAPH_CONNECTORS_SEARCH_INDEX
Graph Connectors Search with Index (Microsoft Viva Topics)GRAPH_CONNECTORS_SEARCH_INDEX_TOPICEXP
Dynamics 365 Guides指南
Microsoft Information Governance信息治理
Information Barriers信息_障碍
Microsoft Insider Risk Management内部风险
Microsoft Insider Risk ManagementINSIDER_RISK_MANAGEMENT
SharePoint Syntex智能内容服务
SharePoint Syntex – SPO typeIntelligence_Content_Services_SPO_type
Microsoft IntuneINTUNE_A
Intune Advanced endpoint analyticsIntune_AdvancedEA
MDE SecurityManagementIntune_Defender
Microsoft Intune for EducationINTUNE_EDU
Mobile Device Management for Office 365INTUNE_O365
Intune Plan 2INTUNE_P2
Microsoft IntuneINTUNE_SBIZ
Intune Endpoint Privilege ManagementIntune-EPM
Microsoft Tunnel for Mobile Application ManagementIntune-MAMTunnel
MS Imagine AcademyIT_ACADEMY_AD
Microsoft Kaizala Pro凯扎拉_O365_P1
Microsoft Kaizala Pro凯扎拉_O365_P2
Microsoft Kaizala ProKAIZALA_O365_P3
Microsoft Kaizala ProKAIZALA_STANDALONE
Customer LockboxLOCKBOX_ENTERPRISE
Customer Lockbox for GovernmentLOCKBOX_ENTERPRISE_GOV
Microsoft 365 Advanced AuditingM365_ADVANCED_审计
Microsoft 365 Audit PlatformM365_AUDIT_PLATFORM
Microsoft 365 Lighthouse (Plan 1)M365_LIGHTHOUSE_CUSTOMER_PLAN1
Microsoft 365 Lighthouse (Plan 2)M365_LIGHTHOUSE_PARTNER_PLAN1
Microsoft TeamsMCO_TEAMS_IW
Microsoft Teams Premium Virtual AppointmentsMCO_虚拟_APPT
Microsoft 365 Phone System平均COEV
Microsoft 365 Phone System for GovernmentMCOEV_GOV
Microsoft 365 Phone Standard Resource AccountMCOEV_VIRTUALUSER
Microsoft 365 Phone Standard Resource Account for GovernmentMCOEV_VIRTUALUSER_GOV
Skype for Business Cloud PBX for Small and Medium BusinessMCOEVSMB
MCO Free for Microsoft Teams (Free)自由软件
Skype for Business Online (Plan 1)MCIMP
Skype for Business Online (Plan 1) for GovernmentMCOIMP_GOV
Skype for Business Online (Plan P1)麦克莱特
Microsoft 365 Audio Conferencing Pay-Per-Minute麦科米塔克佩
Microsoft 365 Audio Conferencing麦克梅特病毒
Microsoft 365 Audio Conferencing for GovernmentMCOMEETADV_GOV
Microsoft Teams Audio Conferencing with dial-out to select geographiesMCOMEE基础版
Microsoft 365 Domestic Calling PlanMCOPSTN1
Domestic Calling for GovernmentMCOPSTN1_GOV
Domestic and International Calling PlanMCOPSTN2
MCOPSTN3MCOPSTN3
Microsoft 365 Domestic Calling Plan (120 min)MCOPSTN5
Microsoft 365 Domestic Calling Plan (120 min) at User LevelMCOPSTN8
Communications CreditsMCOPSTNC
Australia Calling Plan麦克普斯特诺
Skype for Business Online (Plan 2)麦克标准
Skype for Business Online (Plan 2) for GovernmentMCOSTANDARD_GOV
Skype for Business Online (Plan 2) for MIDSIZMCOSTANDARD_MIDMARKET
Skype for Business Online (Plan 3)MCO语音会议
Microsoft Defender for Endpoint Plan 1MDE_LITE
Microsoft Defender for BusinessMDE_SMB
Microsoft Dynamics Marketing Sales Collaboration – Eligibility Criteria ApplyMDM_SALES_COLLABORATION
Microsoft Azure Multi-Factor AuthenticationMFA_PREMIUM
Microsoft Application Protection and Governance (A)MICROSOFT_APPLICATION_PROTECTION_AND_GOVERNANCE_A
Microsoft Application Protection and Governance (D)MICROSOFT_APPLICATION_PROTECTION_AND_GOVERNANCE_D
Microsoft Business Center微软_商业_中心
Microsoft 365 Communication ComplianceMICROSOFT_COMMUNICATION_COMPLIANCE
Microsoft eCDN微软_ECDN
Microsoft Remote AssistMICROSOFT_REMOTE_ASSIST
Microsoft Search微软_搜索
Microsoft Viva Sales Premium with Power AutomateMicrosoft_Viva_Sales_PowerAutomate
Microsoft Viva Sales Premium & TrialMicrosoft_Viva_Sales_PremiumTrial
Microsoft Bookings微软预订
Microsoft Endpoint DLP微软ENDPOINTDLP
Microsoft Stream微软流
Minecraft Education EditionMINECRAFT_EDUCATION_EDITION
Information Protection for Office 365 – StandardMIP_S_CLP1
Information Protection for Office 365 – PremiumMIP_S_CLP2
Data Classification in Microsoft 365MIP_S_交换
Data Classification in Microsoft 365 – Company LevelMIP_S_EXCHANGE_CO
Microsoft ML-Based ClassificationML_CLASSIFICATION
Meeting Room Managed ServicesMMR_P1
Microsoft 365 DefenderMTP
Insights by MyAnalyticsMYANALYTICS_P2
Insights by MyAnalytics for GovernmentMYANALYTICS_P2_GOV
Microsoft Social Engagement EnterpriseNB企业
Microsoft Social Engagement Professional – Eligibility Criteria ApplyNB专业CRM
Nonprofit PortalNONPROFIT_PORTAL
Nucleus核
Outlook Customer ManagerO365_SB_Relationship_Management
Office 365 Business办公室_业务
Microsoft Forms (Plan 2)OFFICE_FORMS_PLAN_2
Microsoft Forms (Plan 3)OFFICE_FORMS_PLAN_3
Office 365 Small Business SubscriptionOFFICE_PRO_PLUS_SUBSCRIPTION_SBIZ
Microsoft 365 Apps for Enterprise (Device)OFFICE_PROPLUS_DEVICE
Office Shared Computer ActivationOFFICE_SHARED_COMPUTER_ACTIVATION
Office Mobile SubscriptionOFFICEMOBILE_SUBSCRIPTION
Office Mobile Apps for Office 365 for GCCOFFICEMOBILE_SUBSCRIPTION_GOV
Microsoft 365 Apps for enterprise办公室订阅
Microsoft 365 Apps for enterprise GOFFICESUBSCRIPTION_GOV
Microsoft 365 Apps for Enterprise (Unattended)OFFICESUBSCRIPTION_无人值守
OneDrive for business BasicONEDRIVE_BASIC
OneDrive for Business Basic for GovernmentONEDRIVE_BASIC_GOV
OneDriveEnterpriseONEDRIVE企业
OneDriveStandardONEDRIVE标准
Office 365 Privileged Access ManagementPAM_ENTERPRISE
Power BI Premium PPBI_PREMIUM_P1_ADDON
Power Apps for Dynamics 365 vTrialPOWER_APPS_DYN365_VIRAL_TRIAL
Power Automate RPA AttendedPOWER_AUTOMATE_ATTENDED_RPA
Power Automate for Dynamics 365 vTrialPOWER_AUTOMATE_DYN365_VIRAL_TRIAL
Power Automate for Project P1Power_Automate_For_Project_P1
Power Automate Unattended RPA add-onPOWER_AUTOMATE_UNATTENDED_RPA
Power Pages Internal UserPower_Pages_Internal_User
Power Pages vTrial for MakersPOWER_PAGES_VTRIAL
Power Virtual Agents for ChatPOWER_VIRTUAL_AGENTS_D365_CS_CHAT
Power Virtual Agents for Office 365POWER_VIRTUAL_AGENTS_O365_F1
Power Virtual Agents for Office 365 P1POWER_VIRTUAL_AGENTS_O365_P1
Power Virtual Agents for Office 365POWER_VIRTUAL_AGENTS_O365_P2
Power Virtual Agents for Office 365POWER_VIRTUAL_AGENTS_O365_P3
Power Apps for Customer Service ProPOWERAPPS_CUSTOMER_SERVICE_PRO
PowerApps for DeveloperPOWERAPPS_DEV_VIRAL
PowerApps for Dynamics 365POWERAPPS_DYN_APPS
Power Apps for Dynamics 365POWERAPPS_DYN_P2
Power Apps for Dynamics 365POWERAPPS_DYN_TEAM
Power Apps for GuidesPOWERAPPS_指南
PowerApps for Office 365POWERAPPS_O365_P1
Power Apps for Office 365 for GovernmentPOWERAPPS_O365_P1_GOV
Power Apps for Office 365POWERAPPS_O365_P2
Power Apps for Office 365 for GovernmentPOWERAPPS_O365_P2_GOV
Power Apps for Office 365 (Plan 3)POWERAPPS_O365_P3
Power Apps for Office 365 for GovernmentPOWERAPPS_O365_P3_GOV
Power Apps for Office 365 F3POWERAPPS_O365_S1
Power Apps for Office 365 F3 for GovernmentPOWERAPPS_O365_S1_GOV
PowerApps Plan 1 for GovernmentPOWERAPPS_P1_GOV
Power Apps (Plan 2)POWERAPPS_P2
PowerApps TrialPOWERAPPS_P2_VIRAL
Power Apps per App PlanPOWERAPPS_PER_APP
PowerApps per app baseline accessPOWERAPPS_PER_APP_IWTRIAL
Power Apps per appPOWERAPPS_PER_APP_NEW
Power Apps per User PlanPOWERAPPS_PER_USER
Power Apps per User Plan for GovernmentPOWERAPPS_PER_USER_GCC
Power Apps Portals Login Capacity Add-OnPOWERAPPS_PORTALS_LOGIN
Power Apps Portals Login Capacity Add-On for GovernmentPOWERAPPS_PORTALS_LOGIN_GCC
Power Apps Portals Page View Capacity Add-OnPOWERAPPS_PORTALS_PAGEVIEW
Power Apps Portals Page View Capacity Add-On for GovernmentPOWERAPPS_PORTALS_PAGEVIEW_GCC
Power Apps for Sales ProPOWERAPPS_SALES_PRO
Microsoft PowerAppsPOWERAPP免费
PAD for WindowsPOWERAUTOMATE_DESKTOP_FOR_WIN
Logic Flows动力自由
Microsoft Power Videos BasicPOWERVIDEO免费
Premium Encryption in Office 365PREMIUM_ENCRYPTION
Privacy Management – Subject Rights Request隐私_管理_DSR
Privacy Management – Subject Rights Request (1 – Exchange)PRIVACY_MANGMENT_DSR_1
Privacy Management – Subject Rights Request (10)PRIVACY_MANGMENT_DSR_10
Privacy Management – Subject Rights Request (100)PRIVACY_MANGMENT_DSR_100
Privacy Management – Subject Rights Request (Exchange)PRIVACY_MANGMENT_DSR_EXCHANGE
Privacy Management – Subject Rights Request (1)PRIVACY_MANGMENT_DSR_EXCHANGE_1
Privacy Management – Subject Rights Request (10 – Exchange)PRIVACY_MANGMENT_DSR_EXCHANGE_10
Privacy Management – Subject Rights Request (100 – Exchange)PRIVACY_MANGMENT_DSR_EXCHANGE_100
Priva – Risk隐私_管理_风险
Priva – Risk (Exchange)PRIVACY_MANGMENT_RISK_EXCHANGE
Project Online Desktop ClientPROJECT_CLIENT_SUBSCRIPTION
Project Online Desktop Client for GovernmentPROJECT_CLIENT_SUBSCRIPTION_GOV
Project Online Essentials项目要点
Project Online Essentials for GovernmentPROJECT_ESSENTIALS_GOV
Project for Project OperationsPROJECT_FOR_PROJECT_OPERATIONS
Dynamics 365 Business Central for IWsPROJECT_MADEIRA_PREVIEW_IW
Project for Office (Plan F)项目_O365_F3
Project for Office (Plan E1)项目_O365_P1
Project for Office (Plan E3)项目_O365_P2
Project for Office (Plan E5)项目_O365_P3
Project P1项目_P1
Project P3项目_专业
Project P3 for FacultyPROJECT_PROFESSIONAL_FACULTY
Microsoft Planner项目工作管理
Office 365 Planner for Government项目工作管理_GOV
Microsoft Records Management记录管理
Remote help远程帮助
Rights Management AdhocRMS_S_ADHOC
Microsoft Azure Rights Management ServiceRMS_S_BASIC
Azure Information Protection Premium P1RMS_S_ENTERPRISE
Microsoft Azure Active Directory RightsRMS_S_ENTERPRISE)
Azure Rights ManagementRMS_S_ENTERPRISE_GOV
Microsoft Azure Active Directory RightsRMS_S_PREMIUM
Azure Information Protection Premium P1 for GCCRMS_S_PREMIUM_GOV
Azure Information Protection Premium P2RMS_S_PREMIUM2
Azure Information Protection Premium P2 for GCCRMS_S_PREMIUM2_GOV
Office 365 SafeDocs安全文档系统
School Data Sync (Plan 1)学校_数据_同步_P1
School Data Sync (Plan 2)学校_数据_同步_P2
SharePoint Plan 1GSharePoint 计划 1G
Project Online ServiceSHAREPOINT_PROJECT
Project Online Service for EducationSHAREPOINT_PROJECT_EDU
Project Online Service for GovernmentSHAREPOINT_PROJECT_GOV
SharePoint for DeveloperSHAREPOINT_S_DEVELOPER
SharePoint Online KioskSHAREPOINTDeskless
SharePoint KioskGSHAREPOINTDESKLESS_GOV
SharePoint (Plan 2)共享点企业
SharePoint (Plan 2) for EducationSHAREPOINTENTERPRISE_EDU
SharePoint Plan 2GSHAREPOINTENTERPRISE_GOV
SharePoint Plan 1SHAREPOINTENTERPRISE_MIDMARKET
SharePoint Lite共享点精简版
SharePoint Multi-GeoSHAREPOINTONLINE_MULTIGEO
SharePoint StandardSHAREPOINT标准
SharePoint (Plan 1) for EducationSHAREPOINTSTANDARD_EDU
Office 365 Extra File StorageSHAREPOINT存储
SharePoint Storage GOVSHAREPOINTSTORAGE_GOV
Office for the web共享点WAC
Office Online for DeveloperSHAREPOINTWAC_DEVELOPER
Office for the Web for EducationSHAREPOINTWAC_EDU
Office for the Web for GovernmentSHAREPOINTWAC_GOV
Dynamics 365 AI for Market Insights – FreeSOCIAL_ENGAGEMENT_APP_USER
App ConnectSPZA
Microsoft Power BI Information Services Plan 1SQL_IS_SSIM
Microsoft Stream for Office 365 E1STREAM_O365_E1
Microsoft Stream for O365 for Government (E1)STREAM_O365_E1_GOV
Microsoft Stream for Office 365 E3STREAM_O365_E3
Microsoft Stream for O365 for Government (E3)STREAM_O365_E3_GOV
Microsoft Stream for Office 365 E5STREAM_O365_E5
Stream for Office 365 for Government (E5)STREAM_O365_E5_GOV
Microsoft Stream for O365 K SKUSTREAM_O365_K
Microsoft Stream for O365 for Government (F1)STREAM_O365_K_GOV
Stream for Office 365STREAM_O365_SMB
Microsoft Stream Plan 2流_P2
Microsoft Stream Storage Add-OnSTREAM_STORAGE
Sway摇摆
Microsoft 365 Advanced CommunicationsTEAMS_ADVCOMMS
Microsoft Teams for DOD (AR)TEAMS_AR_DOD
Microsoft Teams for GCCHigh (AR)TEAMS_AR_GCCHIGH
Microsoft Teams (Free)TEAM_FREE
Teams Free Service团队_免费_服务
Microsoft Teams for Government团队_GOV
Teams Room Standard团队_房间_标准
Microsoft Teams团队1
Microsoft Teams Essentials团队Ess
Teams Multi-Geo团队多地理
Microsoft Teams Premium PersonalizedTEAMPRO_CUST
Microsoft Teams Premium IntelligentTEAMPRO_MGMT
Microsoft Teams Premium SecureTEAMPRO_PROTECTION
Microsoft Teams Premium Virtual AppointmentTEAMPRO_VIRTUALAPPT
Microsoft Teams Premium WebinarTEAMPRO_网络研讨会
Microsoft Defender for Office 365 (Plan 2)威胁情报
Microsoft Defender for Office 365 (Plan 2) for GovernmentTHREAT_INTELLIGENCE_GOV
Microsoft Defender Vulnerability ManagementTVM_PREMIUM_1
Universal PrintUNIVERSAL_PRINT_01
Universal Print Without SeedingUNIVERSAL_PRINT_NO_SEEDING
Virtual Agent Base虚拟_代理_基地
Virtual AgentVIRTUAL_AGENT_USL
Windows 10/11 EnterpriseWindows 10 虚拟化权限 (E3/E5+VDA)
Visio Desktop AppVISIO_CLIENT_SUBSCRIPTION
Visio Desktop App for GovernmentVISIO_CLIENT_SUBSCRIPTION_GOV
Visio web app视觉在线
Visio Web App for GovernmentVISIOONLINE_GOV
Viva GoalsViva_Goals_Premium
Viva LearningVIVA_LEARNING_PREMIUM
Viva Learning SeededVIVA_LEARNING_SEEDED
Viva Engage Communities and CommunicationsVIVAENGAGE_COMMUNITIES_AND_COMMUNICATIONS
Viva Engage CoreVIVAENGAGE_CORE
Viva Engage KnowledgeVIVAENGAGE_KNOWLEDGE
Whiteboard (Firstline)WHITEBOARD_FIRSTLINE1
Whiteboard (Plan 1)WHITEBOARD_PLAN1
Whiteboard (Plan 2)WHITEBOARD_PLAN2
Whiteboard (Plan 3)WHITEBOARD_PLAN3
Windows 10 Enterprise E3 (Local Only)WIN10_ENT_LOC_F1
Windows 10/11 Enterprise (Original)WIN10_PRO_ENT_SUB
Windows 10/11 BusinessWINBIZ
Microsoft Defender for Endpoint温德法夫ATP
Windows AutopatchWindows 自动补丁
Windows Store for Business EDU Store faculty适用于企业 EDU Store_faculty 的 Windows 应用商店
Windows AutopatchWindows_自动补丁
Windows Store ServiceWINDOWS_STORE
Windows Update for Business Deployment ServiceWINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE
Microsoft Workplace Analytics工作场所_分析
Microsoft Viva Insights BackendWORKPLACE_ANALYTICS_INSIGHTS_BACKEND
Microsoft Viva InsightsWORKPLACE_ANALYTICS_INSIGHTS_USER
Yammer for AcademicYAMMER_EDU
Yammer EnterpriseYAMMER_ENTERPRISE
Yammer MidsizeYAMMER_MIDSIZE
概括
我希望您阅读本文后能够对 Office 365 许可有一个很好的了解。
您现在应该能够生成所需的任何类型的 Office 365 许可报告。
对于用户许可证的日常管理,使用 Easy365Manager 可以节省大量时间。
Easy365Manager 可在此处作为功能齐全的 30 天试用版提供。下载、安装和配置只需不到五分钟。
通过删除本地 Exchange 服务器,保护自己免受未来的零日攻击(例如 Hafnium)。立即开始使用 Easy365Manager!
猜你还喜欢
- 03-30 [玩转系统] 如何用批处理实现关机,注销,重启和锁定计算机
- 02-14 [系统故障] Win10下报错:该文件没有与之关联的应用来执行该操作
- 01-07 [系统问题] Win10--解决锁屏后会断网的问题
- 01-02 [系统技巧] Windows系统如何关闭防火墙保姆式教程,超详细
- 12-15 [玩转系统] 如何在 Windows 10 和 11 上允许多个 RDP 会话
- 12-15 [玩转系统] 查找 Exchange/Microsoft 365 中不活动(未使用)的通讯组列表
- 12-15 [玩转系统] 如何在 Windows 上安装远程服务器管理工具 (RSAT)
- 12-15 [玩转系统] 如何在 Windows 上重置组策略设置
- 12-15 [玩转系统] 如何获取计算机上的本地管理员列表?
- 12-15 [玩转系统] 在 Visual Studio Code 中连接到 MS SQL Server 数据库
- 12-15 [玩转系统] 如何降级 Windows Server 版本或许可证
- 12-15 [玩转系统] 如何允许非管理员用户在 Windows 中启动/停止服务
取消回复欢迎 你 发表评论:
- 精品推荐!
-
- 最新文章
- 热门文章
- 热评文章
[影视] 黑道中人 Alto Knights(2025)剧情 犯罪 历史 电影
[古装剧] [七侠五义][全75集][WEB-MP4/76G][国语无字][1080P][焦恩俊经典]
[实用软件] 虚拟手机号 电话 验证码 注册
[电视剧] 安眠书店/你 第五季 You Season 5 (2025) 【全10集】
[电视剧] 棋士(2025) 4K 1080P【全22集】悬疑 犯罪 王宝强 陈明昊
[软件合集] 25年6月5日 精选软件22个
[软件合集] 25年6月4日 精选软件36个
[短剧] 2025年06月04日 精选+付费短剧推荐33部
[短剧] 2025年06月03日 精选+付费短剧推荐25部
[软件合集] 25年6月3日 精选软件44个
[剧集] [央视][笑傲江湖][2001][DVD-RMVB][高清][40集全]李亚鹏、许晴、苗乙乙
[电视剧] 欢乐颂.5部全 (2016-2024)
[电视剧] [突围] [45集全] [WEB-MP4/每集1.5GB] [国语/内嵌中文字幕] [4K-2160P] [无水印]
[影视] 【稀有资源】香港老片 艺坛照妖镜之96应召名册 (1996)
[剧集] 神经风云(2023)(完结).4K
[剧集] [BT] [TVB] [黑夜彩虹(2003)] [全21集] [粤语中字] [TV-RMVB]
[实用软件] 虚拟手机号 电话 验证码 注册
[资源] B站充电视频合集,包含多位重量级up主,全是大佬真金白银买来的~【99GB】
[影视] 内地绝版高清录像带 [mpg]
[书籍] 古今奇书禁书三教九流资料大合集 猎奇必备珍藏资源PDF版 1.14G
[电视剧] [突围] [45集全] [WEB-MP4/每集1.5GB] [国语/内嵌中文字幕] [4K-2160P] [无水印]
[剧集] [央视][笑傲江湖][2001][DVD-RMVB][高清][40集全]李亚鹏、许晴、苗乙乙
[电影] 美国队长4 4K原盘REMUX 杜比视界 内封简繁英双语字幕 49G
[电影] 死神来了(1-6)大合集!
[软件合集] 25年05月13日 精选软件16个
[精品软件] 25年05月15日 精选软件18个
[绝版资源] 南与北 第1-2季 合集 North and South (1985) /美国/豆瓣: 8.8[1080P][中文字幕]
[软件] 25年05月14日 精选软件57个
[短剧] 2025年05月14日 精选+付费短剧推荐39部
[短剧] 2025年05月15日 精选+付费短剧推荐36部
- 最新评论
-
- 热门tag