My offline installation notes: Code: <Add SourcePath="E:\" OfficeClientEdition="64" > When the source path is specified as E:\ it means it expects the extracted "Office" folder here. In my case I had three items: "Office" folder, setup.exe and autorun.inf setup.exe has been replaced by a larger ODT setup.exe tool from microsoft com/en-us/download/details.aspx?id=49117 Then I executed Code: E:\>setup.exe /Configure E:\Configuration.xml My configuration file. As a template I used Configuration.xml file created for the Office 2019 Professional Vol on https config office com Code: <Configuration> <Add SourcePath="E:\" OfficeClientEdition="64"> <Product ID="ProfessionalRetail"> <Language ID="en-us" /> <ExcludeApp ID="Groove" /> <ExcludeApp ID="Lync" /> <ExcludeApp ID="OneDrive" /> <ExcludeApp ID="OneNote" /> <ExcludeApp ID="Outlook" /> <ExcludeApp ID="Publisher" /> </Product> </Add> <Property Name="SharedComputerLicensing" Value="0" /> <Property Name="PinIconsToTaskbar" Value="TRUE" /> <Property Name="SCLCacheOverride" Value="0" /> <Property Name="AUTOACTIVATE" Value="0" /> <Property Name="FORCEAPPSHUTDOWN" Value="FALSE" /> <Property Name="DeviceBasedLicensing" Value="0" /> <Updates Enabled="FALSE" /> <AppSettings> <User Key="software\microsoft\office\16.0\common\internet" Name="donotupdatelinksonsave" Value="1" Type="REG_DWORD" App="office16" Id="L_Updatelinksonsave" /> <User Key="software\microsoft\office\16.0\common" Name="sendcustomerdata" Value="0" Type="REG_DWORD" App="office16" Id="L_Sendcustomerdata" /> <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\common" Name="updatereliabilitydata" Value="0" Type="REG_DWORD" App="office16" Id="L_UpdateReliabilityPolicy" /> <User Key="software\microsoft\office\16.0\common\shipasserts" Name="disableshipasserts" Value="1" Type="REG_DWORD" App="office16" Id="L_StopReportingNonCriticalErrors" /> <User Key="software\microsoft\office\16.0\common\internet" Name="fsshttpoff" Value="0" Type="REG_DWORD" App="office16" Id="L_TurnOnFileSynchronizationViaSOAPOverHTTP" /> <User Key="software\microsoft\office\16.0\common\portal" Name="linkpublishingdisabled" Value="1" Type="REG_DWORD" App="office16" Id="L_DisabletheOfficeclientfrompolling" /> <User Key="software\microsoft\office\16.0\common\portal\colleagueimport" Name="enabled" Value="0" Type="REG_DWORD" App="office16" Id="L_EnableColleagueImportOutlookAddintowork" /> <User Key="software\microsoft\office\16.0\common\broadcast" Name="disableothersoption" Value="1" Type="REG_DWORD" App="office16" Id="L_PreventAccessToUserSpecifiedServices" /> <User Key="software\microsoft\office\16.0\common\broadcast" Name="disabledefaultservice" Value="1" Type="REG_DWORD" App="office16" Id="L_DisableDefaultService" /> <User Key="software\microsoft\office\16.0\common\feedback" Name="enabled" Value="0" Type="REG_DWORD" App="office16" Id="L_SendFeedback" /> <User Key="software\microsoft\office\16.0\common\feedback" Name="includescreenshot" Value="0" Type="REG_DWORD" App="office16" Id="L_Screenshot" /> <User Key="software\microsoft\office\16.0\common\general" Name="disablehyperlinkstowebtemplates" Value="1" Type="REG_DWORD" App="office16" Id="L_DisablehyperlinkstowebtemplatesinFileNewandtaskpanes" /> <User Key="software\microsoft\office\16.0\common\general" Name="disableofficetemplates" Value="1" Type="REG_DWORD" App="office16" Id="L_DisableOfficeTemplates" /> <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="Full" AcceptEULA="TRUE" /> </Configuration> I have tried to implement as many privacy options as possible, but after I have reviewed the options in the installed Office, I noticed that it still requires some tuning. It tries to connect to several ms domains. Code: ctldl.windowsupdate.com ocos-office365-s2s.msedge.net config.edge.skype.com nexusrules.officeapps.live.com officeclient.microsoft.com mobile.pipe.aria.microsoft.com ssw.live.com ls2web.redmond.corp.microsoft.com
The tool on official site is for Win 10 AND Office 365/2019. How do you get this to work with Office 2016 on Win 7?