Forum Discussion
Deleted
Oct 11, 2018Desactivate Outlook in Office 365
Hi, I remember back in the days that it was possible to disable outlook only from office 2007-2010 in the add/ remove programs. Now, I have outlook 365 installed on a machine and I want to disable it...
Oct 11, 2018
You can push office to your client from a local source and customize the installation with an xml file you configure
Office deployment tool:
https://docs.microsoft.com/en-us/deployoffice/deploy-office-365-proplus-from-a-local-source
Office deployment tool:
https://docs.microsoft.com/en-us/deployoffice/deploy-office-365-proplus-from-a-local-source
- DeletedOct 11, 2018
Hi, yes it worked! I used ODT to install office and added the line: <ExcludeApp ID="Outlook" /> in the config file.
Here is my config file:
<Configuration>
<Add OfficeClientEdition="32" Branch="Current">
<Product ID="O365BusinessRetail">
<Language ID="MatchOS" />
<ExcludeApp ID="Outlook" />
</Product>
</Add>
<!-- <Updates Enabled="TRUE" UpdatePath="\\Server\Share\" /> -->
<!-- <Display Level="None" AcceptEULA="TRUE" /> -->
<!-- <Property Name="AUTOACTIVATE" Value="1" /> -->
</Configuration>- Oct 11, 2018Great to hear!! Glad I could help :)
Adam