For Office 2016 Pro Plus VL, i use the original setup with original config.xml. First, extract the iso. The config.xml it's in the proplus.ww folder. This is my edited config.xml: Code: <Configuration Product="ProPlus"> <Display Level="basic" CompletionNotice="no" SuppressModal="yes" AcceptEula="yes" /> <!-- <Logging Type="standard" Path="%temp%" Template="Microsoft Office Professional Plus Setup(*).txt" /> --> <!-- <USERNAME Value="Customer" /> --> <!-- <COMPANYNAME Value="MyCompany" /> --> <!-- <INSTALLLOCATION Value="%programfiles%\Microsoft Office" /> --> <!-- <LIS CACHEACTION="CacheOnly" /> --> <!-- <LIS SOURCELIST="\\server1\share\Office;\\server2\share\Office" /> --> <!-- <DistributionPoint Location="\\server\share\Office" /> --> <!-- <OptionState Id="OptionID" State="absent" Children="force" /> --> <OptionState Id="ACCESSFiles" State="local" Children="force" /> <OptionState Id="EXCELFiles" State="local" Children="force" /> <OptionState Id="WORDFiles" State="local" Children="force" /> <OptionState Id="OUTLOOKFiles" State="local" Children="force" /> <OptionState Id="PPTFiles" State="local" Children="force" /> <OptionState Id="PubPrimary" State="absent" Children="force" /> <OptionState Id="OneNoteFiles" State="absent" Children="force" /> <OptionState Id="GrooveFiles2" State="absent" Children="force" /> <OptionState Id="LyncCoreFiles" State="absent" Children="force" /> <OptionState Id="VisioPreviewerFiles" State="absent" Children="force" /> <Setting Id="SETUP_REBOOT" Value="Never" /> <!-- <Command Path="%windir%\system32\msiexec.exe" Args="/i \\server\share\my.msi" QuietArg="/q" ChainPosition="after" Execute="install" /> --> </Configuration> You can exclude the apps you want. State="Absent" for exclude, "Local" for install. Now for silent install make a new txt and change the extension to cmd, then put it with the original setup. This is my office16.cmd: Code: setup.exe /config proplus.WW\config.xml To install click on office16.cmd.
Here is the configuration for a silent installation during the windows installation Just edit "name.ww\config.xml" in each edition : proplus.ww\config.xml Code: <Configuration Product="ProPlus"> <Display Level="none" CompletionNotice="no" SuppressModal="yes" AcceptEula="yes" /> <Setting Id="SETUP_REBOOT" Value="Never" /> <Setting Id="REBOOT" Value="ReallySuppress"/> </Configuration> prjpro.ww\config.xml Code: <Configuration Product="PrjPro"> <Display Level="none" CompletionNotice="no" SuppressModal="yes" AcceptEula="yes" /> <Setting Id="SETUP_REBOOT" Value="Never" /> <Setting Id="REBOOT" Value="ReallySuppress"/> </Configuration> vispro.ww\config.xml Code: <Configuration Product="VisPro"> <Display Level="none" CompletionNotice="no" SuppressModal="yes" AcceptEula="yes" /> <Setting Id="SETUP_REBOOT" Value="Never" /> <Setting Id="REBOOT" Value="ReallySuppress"/> </Configuration> proofkit.ww\config.xml Code: <Configuration Product="Proofkit"> <Display Level="none" CompletionNotice="no" SuppressModal="yes" AcceptEula="yes" /> <Setting Id="SETUP_REBOOT" Value="Never" /> <Setting Id="REBOOT" Value="ReallySuppress"/> </Configuration> SetupComplete.cmd Code: @ECHO OFF "%~dp0Office\setup.exe" /config "%~dp0Office\proplus.ww\config.xml" "%~dp0Office\setup.exe" /config "%~dp0Office\prjpro.ww\config.xml" "%~dp0Office\setup.exe" /config "%~dp0Office\vispro.ww\config.xml" "%~dp0Office\setup.exe" /config "%~dp0Office\proofkit.ww\config.xml" RMDIR /S /Q "%WINDIR%\Setup\Scripts" exit
Thanks for reply. But the ways of using xxxconfig.xml d'nt work for me. It's probably my bad? Anyway i solved my Off2016 silent install by using setup.exe /admin, create the .MSP file as my needs, puit it in Office\Update, and exe "setup.exe /adminfile "Updates\Off2K16.MSP". Work perfectly. Regards