5.2MD-102Fundamental
Est: ~15 minsVerified: 2026-08

Microsoft 365 Apps: Deployment & Update Channels

Deploy Microsoft 365 Apps (Word, Excel, Outlook, Teams), configure installation suites, remove legacy MSI Office, and manage Monthly vs Semi-Annual Enterprise update channels.

Tags:#M365 Apps#Office#Update Channels#Shared Computer Activation#Intune#MD-102
01

Overview

Deploying Microsoft 365 Apps (formerly Office 365 ProPlus) using Microsoft Intune provides centralized control over which individual applications are installed, license activation behavior (such as Shared Computer Activation for AVD/RDS), and enterprise update channels (Current Channel, Monthly Enterprise Channel, Semi-Annual Enterprise Channel).

Intune utilizes the Office Deployment Tool (ODT) and Click-to-Run (C2R) engine natively under the hood.

---

02

When to Use

Update ChannelTarget AudienceFeature Cadence
Current ChannelPilot users, executives wanting early featuresReal-time release as soon as features are ready (multiple times/month).
Monthly Enterprise ChannelRecommended Corporate StandardPredictable monthly release on Patch Tuesday (second Tuesday of month) with high stability.
Semi-Annual Enterprise ChannelRegulated, specialized, or mission-critical devicesNew features twice a year (January and July); security patches monthly.

---

04

Portal Path

TEXT
Microsoft Intune Admin Center (https://intune.microsoft.com)
└── Apps
    └── Windows
        └── Add
            └── App type: Microsoft 365 Apps (Windows 10 and later)

---

05

Step-by-Step Implementation

Step 1: Configure the App Suite

  1. Select Microsoft 365 Apps (Windows 10 and later).
  2. Select App Suite Information: Name: Microsoft 365 Apps for Enterprise.
  3. Configure App Suite Settings:
  • Select Office apps: Word, Excel, PowerPoint, Outlook, OneDrive (Uncheck Access/Publisher if not required).
  • Update channel: Monthly Enterprise Channel (Recommended).
  • Remove other versions: Yes (Automatically detects and cleanly uninstalls legacy Office MSI installs).
  • Architecture: 64-bit.
  • Shared computer activation: Set to Enable if deploying to shared PCs or Azure Virtual Desktop (AVD).

---

06

PowerShell Commands

Check Office Click-to-Run Version and Update Channel on Endpoint:

PowerShell
# Query registry for installed Office Click-to-Run release and channel
Get-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Office\ClickToRun\Configuration" | 
    Select-Object VersionToReport, CDNBaseUrl, SharedComputerLicensing | Format-List

---

12

MD-102 Exam Notes

Exam Blueprint & High-Yield Traps

Key Exam Traps:

  1. Shared Computer Activation (SCA): Required when deploying Office to multi-user devices (e.g., Azure Virtual Desktop or shared shift laptops). Does not consume one of the user's 5 personal device license activations.
  2. Remove other versions: Enabling this setting cleanly uninstalls legacy MSI-based Office 2013/2016 before deploying the Click-to-Run version, preventing duplicate installations.