Upgrading to Office 2016
Answers (4)
To remove the entire office 2010 x86 suite:
"%~dp0\setup.exe" /config "%~dp0\Uninstall.xml"/Uninstall ProPlus
Uninstall.xml:
- <ConfigurationProduct="ProPlus">
<Display Level="none" CompletionNotice="NO" SuppressModal="yes" AcceptEula="yes" />
<Logging Type="standard" Path="%temp%" Template="Microsoft OfficeProfessional Plus Setup(*).txt" />
<Setting Id="Reboot" Value="Never" />
<Setting Id="SETUP_REBOOT" Value="NEVER" />
<OptionState Id="ProductFiles" State="Local" Children="force" />
</Configuration>
Command line to install O365ProPlus:
setup /configure DesktopInst3.xml
XML file:
- <Configuration>
- <AddOfficeClientEdition="32" Channel="Deferred">
- <Product ID="O365ProPlusRetail">
<LanguageID="en-us" />
<ExcludeAppID="Access" />
</Product>
</Add>
<UpdatesEnabled="FALSE" />
<DisplayLevel="None" AcceptEULA="TRUE"/>
<LoggingLevel="Standard" Path="D:\_Cache\Log"/>
<PropertyName="AUTOACTIVATE" Value="0" />
<PropertyName="FORCEAPPSHUTDOWN" Value="TRUE"/>
<PropertyName="SharedComputerLicensing" Value="0" />
<PropertyName="PinIconsToTaskbar" Value="FALSE"/>
</Configuration>
if exist "C:\Program Files (x86)\Common Files\microsoft shared\OFFICE15\Office Setup Controller\" GOTO 64BIT
copy 2013uninstall.xml "C:\Program Files\Common Files\microsoft shared\OFFICE15\Office Setup Controller\2013uninstall.xml"
"C:\Program Files\Common Files\microsoft shared\OFFICE15\Office Setup Controller\setup.exe" /uninstall PROPLUS /dll OSETUP.DLL /config 2013uninstall.xml
GOTO INSTALL
:64BIT
copy 2013uninstall.xml "C:\Program Files (x86)\Common Files\microsoft shared\OFFICE15\Office Setup Controller\2013uninstall.xml"
"C:\Program Files (x86)\Common Files\microsoft shared\OFFICE15\Office Setup Controller\setup.exe" /uninstall PROPLUS /dll OSETUP.DLL /config 2013uninstall.xml
GOTO INSTALL
:INSTALL
setup.exe /adminfile FullInstallRemovePrevious.msp
<Configuration Product="ProPlus">
<Display Level="none" CompletionNotice="no" SuppressModal="yes" AcceptEula="yes" />
<Setting Id="SETUP_REBOOT" Value="Never" />
</Configuration>
Then create a Application Deployment for Office 2016 with the criteria that Office 2013 must not be on the machine?