MS Office¶
Change update release channel¶
Update Channel Names¶
New name | Previous name |
---|---|
Beta Channel | Insider (sometimes referred to as Insider Fast) |
Current Channel (Preview) | Monthly Channel (Targeted) (sometimes referred to as Insider Slow) |
Current Channel | Monthly Channel |
Monthly Enterprise Channel | (no previous name) |
Semi-Annual Enterprise Channel (Preview) | Semi-Annual Channel (Targeted) |
Semi-Annual Enterprise Channel | Semi-Annual Channel |
Process:¶
- RegEdit
- Go to
Computer\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Office\ClickToRun\Configuration
- CDNBaseUrl
- UpdateChannel
Notes:¶
- Both CDNBaseURL & UpdateChannel point to the same URL
- If the CDNBaseURL & UpdateChannel differ, the UpdateChannel "wins"
URLs¶
UPDATED VERSION¶
-
Monthly Enterprise Channel :
CDNBaseUrl = http://officecdn.microsoft.com/pr/55336b82-a18d-4dd6-b5f6-9e5095c314a6
-
Current Channel :
CDNBaseUrl = http://officecdn.microsoft.com/pr/492350f6-3a01-4f97-b9c0-c7c6ddf67d60
-
Current Channel (Preview) :
CDNBaseUrl = http://officecdn.microsoft.com/pr/64256afe-f5d9-4f86-8936-8840a6a4f5be
-
Semi-Annual Enterprise Channel :
CDNBaseUrl = http://officecdn.microsoft.com/pr/7ffbc6bf-bc32-4f92-8982-f9dd17fd3114
-
Semi-Annual Enterprise Channel (Preview) :
CDNBaseUrl = http://officecdn.microsoft.com/pr/b8f9b850-328d-4355-9145-c59439a0c4cf
-
Beta Channel :
CDNBaseUrl = http://officecdn.microsoft.com/pr/5440fd1f-7ecb-4221-8110-145efaa6372f
PREVIOUS VERSION¶
- Current Channel:
CDNBaseUrl = http://officecdn.microsoft.com/pr/492350f6-3a01-4f97-b9c0-c7c6ddf67d60
- Deferred Channel:
CDNBaseUrl = http://officecdn.microsoft.com/pr/7ffbc6bf-bc32-4f92-8982-f9dd17fd3114
- First Release for Current Channel:
CDNBaseUrl = http://officecdn.microsoft.com/pr/64256afe-f5d9-4f86-8936-8840a6a4f5be
- First Release for Deferred Channel:
CDNBaseUrl = http://officecdn.microsoft.com/pr/b8f9b850-328d-4355-9145-c59439a0c4cf
Script to change URLs¶
Note: not sure where I got this from. Not sure if it's a batch script or a PowerShell script
setlocal
reg query HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Office\ClickToRun\Configuration\ /v CDNBaseUrl
if %errorlevel%==0 (goto SwitchChannel) else (goto End)
:SwitchChannel
reg add HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Office\ClickToRun\Configuration /v CDNBaseUrl /t REG_SZ /d "http://officecdn.microsoft.com/pr/492350f6-3a01-4f97-b9c0-c7c6ddf67d60" /f
reg delete HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Office\ClickToRun\Configuration /v UpdateUrl /f
reg delete HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Office\ClickToRun\Configuration /v UpdateToVersion /f
reg delete HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Office\ClickToRun\Updates /v UpdateToVersion /f
reg delete HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Office\16.0\Common\OfficeUpdate\ /f
"%CommonProgramFiles%\microsoft shared\ClickToRun\OfficeC2RClient.exe" /update user
:End
Endlocal
REF LINKS¶
- (updated 2021-10-19) Changes to update channels for Microsoft 365 Apps
- (updated 2022-06-06) Overview of update channels for Microsoft 365 Apps
- How to manage Office 365 ProPlus Channels for IT Pros
- Change the Microsoft 365 Apps update channel for devices in your organization
- Configuration options for the Office Deployment Tool
- Office 365 - Registry question about Update Channel