Home ยป Microsoft Office Click to run Update Method

Microsoft Office Click to run Update Method

0 comment 108 views

It cannot process from Microsoft Windows Update and WSUS.

1. Build a XML file

<Configuration>

  <Add SourcePath="\\ShareFolder\Installer" OfficeClientEdition="64" Channel="PerpetualVL2019">
    <Product ID="ProPlus2019Volume">
      <Language ID="en-us" />
      <Language ID="zh-TW" />
    </Product>
  </Add>
  <Display Level="None" AcceptEULA="TRUE" />
  <Property Name="AUTOACTIVATE" Value="1" />

  <!--  <RemoveMSI All="True" /> -->

  <!--  <Display Level="None" AcceptEULA="TRUE" />  -->

  <!--  <Property Name="AUTOACTIVATE" Value="1" />  -->

</Configuration>

2. Build a batch file

@echo off
echo "Downloading MS Office 2019 64-bit..."
setup /download configuration-Office2019Enterprise.xml

Pause

3. Download “Office Deployment Tool” from Microsoft
https://www.microsoft.com/en-us/download/details.aspx?id=49117

4. Run the batch file to download it

5. Build another XML to update C2R to update from installer folder

<Configuration>
	<Updates Enabled="TRUE" UpdatePath="\\ShareFolder\Installer" />
</Configuration>

6. Build another batch file to run the update path xml

@echo off
echo "Updating Update Path MS Office 2019 64-bit..."
setup /configure configuration-UpdatePath.xml

Pause

7. Run the update path batch file with admin privilege

8. Verify the update path updated by using registry editor
HKLM\Software\Microsoft\Office\ClickToRun\Configuration\UpdateURL = \\ShareFolder\Installer
HKLM\Software\Microsoft\Office\ClickToRun\Configuration\UpdateEnable = True

9. Open Word or Excel, and then click update

Done!

Leave a Comment