Occasional we’ll get a user asking for a feature which is only on the Current Channel. Or a Microsoft Support Engineer tells us, or the user, “your issue is fixed in a later version.”
Waiting for the Semi-Annual Enterprise Channel isn’t an option in these cases.
This is how we upgrade an individual workstation to the current channel
UpgradeToCurrentChannel.bat:
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
Some notes
The http://officecdn.microsoft sets the update channel you will to switch to.
| Channel | CDNBaseUrl |
|---|---|
| Monthly Enterprise Channel | http://officecdn.microsoft.com/pr/55336b82-a18d-4dd6-b5f6-9e5095c314a6 |
| Current Channel | http://officecdn.microsoft.com/pr/492350f6-3a01-4f97-b9c0-c7c6ddf67d60 |
| Current Channel (Preview) | http://officecdn.microsoft.com/pr/64256afe-f5d9-4f86-8936-8840a6a4f5be |
| Semi-Annual Enterprise Channel | http://officecdn.microsoft.com/pr/7ffbc6bf-bc32-4f92-8982-f9dd17fd3114 |
| Semi-Annual Enterprise Channel (Preview) | http://officecdn.microsoft.com/pr/b8f9b850-328d-4355-9145-c59439a0c4cf |
| Beta Channel | http://officecdn.microsoft.com/pr/5440fd1f-7ecb-4221-8110-145efaa6372f |
References:
How to manage Office 365 ProPlus Channels for IT Pros
Update history for Microsoft 365 Apps (listed by date)