Update Office without opening an Office application

installationmicrosoft-officeupdate

How do you trigger an Office update without opening an office application?

I need this to update Office after an offline install of o365, specifically in instances where Office needs to be updated between installing o365 apps and actually deploying the system.

I know you can do this by opening an office app, then going to File > Office Account > Update Options > Update Now, but I am trying to avoid triggering the Office activation / trial countdown before actually needing to sign a user in.

***edit:
I found a solution and posted it below. Please feel free to contribute additional solutions especially if this does not work for older versions of Office.

Best Answer

From command prompt:

"C:\Program Files\Common Files\microsoft shared\ClickToRun\OfficeC2RClient.exe" /update user

This should trigger the Update GUI.

You can also do this silently by adding displaylevel=false forceappshutdown=true:

"C:\Program Files\Common Files\microsoft shared\ClickToRun\OfficeC2RClient.exe" /update user displaylevel=false forceappshutdown=true

source: WaybackMachine: TechNet Blog: Office365 and its associated command-line and switches

Related Topic