Hello awesome people!
I’m trying to put an MS Office Click to Run installer into a baseline. I’ve got a custom setup.xml file to go along with it, too. However, for whatever reason, Office does not actually install. Plus, the baseline gets hung up on that step. Its action stays as Running and the baseline never advances past it.
I’m new to click to run products so I hope this is an easy fix.
Here’s my action script (downloads the setup.exe and OfficeConfig.xml):
prefetch 12345
sha1:12345 size:12345 http://BigFix:52311/Uploads/12345/OfficeInstall.tmp
sha256:12345
extract 12345
wait __Download\setup.exe /configure OfficeConfig.xml
And, here is my XML:
<Configuration ID="fake">
<Add OfficeClientEdition="64">
<Product ID="Standard2019Volume" PIDKEY="fake" >
<Language ID="en-us" />
<ExcludeApp ID="Groove" />
<ExcludeApp ID="OneDrive" />
<ExcludeApp ID="OneNote" />
<ExcludeApp ID="Outlook" />
<ExcludeApp ID="Publisher" />
</Product>
</Add>
<Property Name="SharedComputerLicensing" Value="0" />
<Property Name="FORCEAPPSHUTDOWN" Value="FALSE" />
<Property Name="DeviceBasedLicensing" Value="0" />
<Property Name="SCLCacheOverride" Value="0" />
<Property Name="AUTOACTIVATE" Value="1" />
<Updates Enabled="TRUE" />
<RemoveMSI />
<AppSettings>
<Setup Name="Company" Value="fake" />
<User Key="software\microsoft\office\16.0\common\internet" Name="useonlinecontent" Value="0" Type="REG_DWORD" App="office16" Id="L_Onlinecontentoptions" />
<User Key="software\microsoft\office\16.0\common\general" Name="shownfirstrunoptin" Value="1" Type="REG_DWORD" App="office16" Id="L_DisableOptinWizard" />
<User Key="software\microsoft\office\16.0\common" Name="qmenable" Value="0" Type="REG_DWORD" App="office16" Id="L_EnableCustomerExperienceImprovementProgram" />
<User Key="software\microsoft\office\16.0\excel\options" Name="defaultformat" Value="51" Type="REG_DWORD" App="excel16" Id="L_SaveExcelfilesas" />
<User Key="software\microsoft\office\16.0\powerpoint\options" Name="defaultformat" Value="27" Type="REG_DWORD" App="ppt16" Id="L_SavePowerPointfilesas" />
<User Key="software\microsoft\office\16.0\word\options" Name="defaultformat" Value="" Type="REG_SZ" App="word16" Id="L_SaveWordfilesas" />
</AppSettings>
<Display Level="None" AcceptEULA="TRUE" CompletionNotice="no" SuppressModal="yes" />
</Configuration>
Your help is appreciated!