Office 2016 Deployment Tool Today

<Configuration> <Remove> <Product ID="ProPlusVolume"> <Language ID="en-us" /> </Product> </Remove> </Configuration> To add/remove apps from existing install, use <Add> with same product ID and <ExcludeApp> / <RemoveApp> . Enable logging to debug issues:

setup.exe /download configuration.xml This downloads Office 2016 source to the folder defined in your XML (add SourcePath if needed). Place setup.exe and configuration.xml in same folder, then: office 2016 deployment tool

setup.exe /configure config.xml No prompts, auto-activates (if KMS/MAK is configured). To uninstall specific products, use <Remove> : To uninstall specific products, use &lt;Remove&gt; : setup

setup.exe /configure configuration.xml Run as for system-wide install. 6. Common XML Options | Element | Purpose | |---------|---------| | <Add SourcePath="\\server\share" | Local/network source location | | <Logging Level="Standard" Path="%temp%" | Enable installation logs | | <Property Name="SharedComputerLicensing" Value="1" | For RDS/Citrix | | <Property Name="FORCEAPPSHUTDOWN" Value="TRUE" | Close apps during install | | <RemoveMSI> | Remove existing MSI Office versions | | <Display Level="Full" AcceptEULA="TRUE" | Show UI (not silent) | 7. Silent Deployment Example (Unattended) <Configuration> <Add OfficeClientEdition="64" Channel="PerpetualVL2016"> <Product ID="ProPlusVolume"> <Language ID="en-us" /> </Product> </Add> <Display Level="None" AcceptEULA="TRUE" /> <Property Name="AUTOACTIVATE" Value="1" /> <Property Name="FORCEAPPSHUTDOWN" Value="TRUE" /> </Configuration> Run with: Silent Deployment Example (Unattended) &lt