Office 365 Apps Not Updating Automatically After Windows Update (2025 Fix)
After a recent Windows update, have your Office 365 apps stopped updating automatically? Youβre not aloneβthousands of users report that Word, Excel, Outlook, and PowerPoint fail to download feature or security updates even though Windows Update runs normally. Hereβs a complete 2025 guide to get Microsoft 365 Auto-Update working again without reinstalling your suite.
π Why Office Auto-Update Stops Working
- Interrupted Windows update changed registry permissions or services.
- Office Click-to-Run Service disabled or set to Manual.
- Group Policy or metered-connection settings blocking background updates.
- Corrupted Office cache or configuration XML.
- VPN or proxy interference preventing connection to Microsoft servers.
βοΈ Step 1 β Check the Office Update Channel
Different Microsoft 365 channels receive updates at varying speeds. Open any Office app β File β Account β About Word. Note the channelβCurrent, Monthly Enterprise, or Semi-Annual. If itβs not βCurrent Channel,β switch it using PowerShell:
cd "C:\Program Files\Common Files\Microsoft Shared\ClickToRun\" officec2rclient.exe /update user updatepromptuser=true forceappshutdown=true
βοΈ Step 2 β Verify Click-to-Run Service Status
Press Win + R, type services.msc, locate Microsoft Office ClickToRun Service.
Set Startup type = Automatic β Click Start β Apply.
Then run in Command Prompt (Admin):
sc config ClickToRunSvc start= auto net start ClickToRunSvc
βοΈ Step 3 β Manually Trigger Office Update
Open any Office app β File β Account β Update Options β Update Now. If you get βUpdates are managed by your organization,β disable the policy:
reg delete HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\office\16.0\common\officeupdate /f
βοΈ Step 4 β Reset Office Update Cache
Navigate to %ProgramData%\Microsoft\ClickToRun and delete the Client Telemetry Cache and Updates folders.
Restart your PC and launch any Office app to force new cache creation.
βοΈ Step 5 β Repair Office Installation
- Control Panel β Programs and Features.
- Select Microsoft 365 Apps β Change β Quick Repair.
- If problem persists, choose Online Repair.
βοΈ Step 6 β Check Metered and Group Policy Settings
- Settings β Network β Wi-Fi β turn off Set as metered connection.
- Press Win + R, type
gpedit.mscβ Computer Config β Admin Templates β Microsoft Office 2016 β Updates β Enable Automatic Updates = Enabled.
βοΈ Step 7 β Repair Windows Update Components
Sometimes Office depends on the Windows Update Agent. Run the following commands:
DISM /Online /Cleanup-Image /RestoreHealth sfc /scannow
After repairs, restart and trigger Office update again.
π‘ Advanced Tip β Switch to Beta or Insider Channel
To receive fixes faster, switch your update channel:
cd "%ProgramFiles%\Common Files\Microsoft Shared\ClickToRun" officec2rclient.exe /changesetting Channel=BetaChannel officec2rclient.exe /update user