Skip to content

Instantly share code, notes, and snippets.

@kogir
Last active May 14, 2017 01:36
Show Gist options
  • Save kogir/e2132139289100119e757180e30e94ff to your computer and use it in GitHub Desktop.
Save kogir/e2132139289100119e757180e30e94ff to your computer and use it in GitHub Desktop.
Slimmer Office 365
<!--
First, download the Office 2016 Deployment Tool from https://www.microsoft.com/en-us/download/details.aspx?id=49117
Then update this XML file:
* Update OfficeClientEdition to 32 for 32-bit, and 64 for 64-bit. Most users will want 32.
* Replace Product ID with correct value for your subscription, from https://support.microsoft.com/en-us/kb/2842297
* Scan the full documentation for more options: https://technet.microsoft.com/en-us/library/jj219426.aspx
Now, run the Deployment Tool. You don't need to uninstall first.
setup.exe /configure .\configuration.xml
See also this nifty online editor: https://officedev.github.io/Office-IT-Pro-Deployment-Scripts/XmlEditor.html
-->
<Configuration>
<Add OfficeClientEdition="64" Channel="Current">
<Product ID="O365ProPlusRetail">
<Language ID="en-us"/>
<ExcludeApp ID="OneDrive"/>
<ExcludeApp ID="OneNote"/>
<ExcludeApp ID="Lync"/>
<ExcludeApp ID="Groove"/>
<ExcludeApp ID="Access"/>
<ExcludeApp ID="Publisher"/>
</Product>
</Add>
<Remove>
<Product ID="SkypeforBusinessEntryRetail">
<Language ID="en-us"/>
</Product>
<Product ID="SkypeforBusinessRetail">
<Language ID="en-us"/>
</Product>
<Product ID="ProjectStdXVolume">
<Language ID="en-us"/>
</Product>
<Product ID="ProjectProXVolume">
<Language ID="en-us"/>
</Product>
<Product ID="VisioStdXVolume">
<Language ID="en-us"/>
</Product>
<Product ID="VisioProXVolume">
<Language ID="en-us"/>
</Product>
<Product ID="ProjectProRetail">
<Language ID="en-us"/>
</Product>
<Product ID="VisioProRetail">
<Language ID="en-us"/>
</Product>
</Remove>
<Updates Enabled="TRUE" Channel="Current"/>
</Configuration>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment