Goto Microsoft Office for the Microsoft Office Customization Tool for Click-to-Run
– Microsoft’s Office C2R configuration tool …
For every 1603 in the World
Goto Microsoft Office for the Microsoft Office Customization Tool for Click-to-Run
– Microsoft’s Office C2R configuration tool …
Custom xml file for a Microsoft Office 365 Click-to-run additional language installation. This will add selected languages to an already existing Office 365 installation.
<Configuration>
<Add OfficeClientEdition="32" Channel="Monthly">
<Product ID="LanguagePack">
<Language ID="sv-se" />
<Language ID="fr-fr" />
<Language ID="de-de" />
<Language ID="pt-br" />
<Language ID="da-dk" />
<Language ID="nb-no" />
</Product>
</Add>
<Display Level="None" AcceptEULA="TRUE" />
<Logging Level="Standard" Path="%TEMP%" />
</Configuration>
Note: The first language in the list will be the language that the existing Office Start Menu items will be transformed into. In this example, the Start Menu shortcuts for Skype for Business, OneDrive for Business and the Tools folder will be translated into Swedish.
Custom download and install xml file for a Microsoft Office 365 Click-to-run installation. This is configured to use the new Microsoft Office update channel and is SCCM integrated and without OneDrive.
<Configuration>
<Add OfficeClientEdition="32" Channel="Monthly" OfficeMgmtCOM="TRUE">
<Product ID="O365ProPlusRetail">
<Language ID="en-us" />
<Language ID="de-de" />
<ExcludeApp ID="OneDrive" />
</Product>
</Add>
<Updates Channel="Monthly" Enabled="TRUE" />
<Display Level="None" AcceptEULA="TRUE" />
<Logging Level="Standard" Path="%TEMP%" />
<Property Name="FORCEAPPSHUTDOWN" Value="FALSE" />
<Property Name="SharedComputerLicensing" Value="0" />
<Property Name="PinIconsToTaskbar" Value="FALSE" />
</Configuration>
Note: And as usual, the ability to pin the Office icons to the taskbar, is only available for the users that is running the installation.
Custom remove.xml for uninstalling the Microsoft Office ProPlus 365 Click-to-run product.
<Configuration>
<Remove>
<Product ID="O365ProPlusRetail">
<Language ID="en-us" />
</Product>
</Remove>
</Configuration>
To remove all Click-to-run installations.
<Configuration>
<Remove All="TRUE" />
</Configuration>
Goto GitHub for Office 365 Online XML Editor
– For Online Configuration and Reference …