SCCM Out of Support Versions of Office 365 Semi-Annual Channel

Let’s build an SCCM custom report to list down the devices that have out of support versions of Office 365 semi-annual channel. ConfigMgr can help you to find the out of support versions of office 365 pro plus installed devices in your environment.

Note! – Office 365 ProPlus was renamed to Microsoft 365 Apps for the enterprise. More info here.

Supported Versions Of Office 365

The following table lists the supported version for each Office 365 update channel while writing this post. The recommendation is to check the Microsoft docs to get the latest support version details.

You need to convert the Build number from the below table to match the version number as per Configuration Manager data.

Patch My PC
  • Build Number = 11328.20644
  • Version Number (SCCM) = 16.0.11328.20644

NOTE! – I don’t think the last part of the build number is significant while checking out the support scenarios. So in the above example version number 1902 = build number 11328. You can just use 11328 in the following scenarios.

Let’s understand some Once you have the latest supported version, replace the version number in the below SQL query. You can use the above version number (SCCM) to build the SQL query to list down the devices that have out of support versions of Office 365.

ChannelVersionBuildRelease dateVersion supported until
Semi-Annual Enterprise Channel190211328.20644August 11, 2020September 8, 2020
Supported Versions Of Office 365 – SCCM Custom Report Out of Support Versions of Office 365 Semi-Annual Channel

Custom Report – Out of Support Versions of Office 365 Semi-Annual Channel

You can start this section, once you have the version details of the latest supported office 365 semi-annual channel. You can track the status of out of support versions of Office 365 semi-annual channels. This is the simplest way to get custom reports from ConfigMgr.

The CDNBaseUrl0 for Semi-Annual Enterprise Channel is – http://officecdn.microsoft.com/pr/7ffbc6bf-bc32-4f92-8982-f9dd17fd3114

Adaptiva

More details about Microsoft 365 Apps CDN Base URL for Office 365 Pro Plus

SQL Query

Use the following query in the custom report section below to find out the list of devices that are out of support for Microsoft 365 Apps.

select * from v_GS_OFFICE365PROPLUSCONFIGURATIONS where VersionToReport0 < '16.0.11328.20644'
and CDNBaseUrl0 = 'http://officecdn.microsoft.com/pr/7ffbc6bf-bc32-4f92-8982-f9dd17fd3114'

Custom Report

  • Open the SQL Management Studio.
  • Click on the New Query button.
  • Select the CM_MEM database from the drop-down menu.
    • MEM is the ConfigMgr site code.
  • Copy the following SQL query to find the report to list the devices that have out of support versions of Office 365 semi-annual channels.
  • Click on the Execute button.
SCCM Custom Report Out of Support Versions of Office 365 Semi-Annual Channel
SCCM Custom Report Out of Support Versions of Office 365 Semi-Annual Channel

Results

You can check the VersionToReport0 value from the following column to understand the out-of-support Versions of the Microsoft 365 Apps (Office 365 Semi-Annual) Channel.

ResourceIDGroupIDRevisionIDAgentIDTimeStampAutoUpgrade0CCMManaged0CDNBaseUrl0cfgUpdateChannel0ClientCulture0ClientFolder0GPOChannel0GPOOfficeMgmtCOM0InstallationPath0KeyName0LastScenario0LastScenarioResult0OfficeMgmtCOM0Platform0SharedComputerLicensing0UpdateChannel0UpdatePath0UpdatesEnabled0UpdateUrl0VersionToReport0
1677721914121:50.0NULLUpdateNotify Objecthttp://officecdn.microsoft.com/pr/7ffbc6bf-bc32-4f92-8982-f9dd17fd3114http://officecdn.microsoft.com/pr/7ffbc6bf-bc32-4f92-8982-f9dd17fd3114en-usC:\Program Files\Common Files\Microsoft Shared\ClickToRunNULLNULLC:\Program Files\Microsoft OfficeOffice365ProPlusConfigurationsUPDATEFailureTRUEx640NULLNULLTRUENULL16.0.11229.20648
SCCM Custom Report Out of Support Versions of Office 365 Semi-Annual Channel

Resources

1 thought on “SCCM Out of Support Versions of Office 365 Semi-Annual Channel”

Leave a Comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.