Office 365ProPlus deploy
Hi
We would like to deploy Office365ProPlus on our sytems. Some as Office 2013 or2016.
Is there a script to uninstall office and install 365?
is it better to install in in my gold image or run as a post-install task?
Answers (4)
When setting up the o365 xml file, you have the option to set it to remove all previous versions of office. I find that works better than a separate uninstall task done first. If you haven't taken a look, yet, you can find the xml generator at https://config.office.com/ Look for the generator at the bottom left of that page.
We install it as a post-install task and our configuration is set to install the latest version, this way we don't have to worry about installing updates. We also don't use an image, we have moved to scripted installs.
For machines that are in place, we use a similar script that uninstalls previous versions first, and then installs ProPlus.
Comments:
-
Thanks.
I tried a script with the tenant number and key but doesn't seem to want to install. How does your configuration scripts looks like? Would you mind sharing? thanks - psaussey 5 years ago-
Script:
setup.exe /download configuration.xml
OPPTransition.exe -Tenant ourtenantid -Key ourkey -Domain ourdomain.onmicrosoft.com -Version 16 -UninstallVersion msi16
Here is our configuration.xml:
<Configuration>
<Add OfficeClientEdition="32" Channel="Broad">
<Product ID="O365ProPlusRetail">
<Language ID="en-us" />
<ExcludeApp ID="Groove" />
</Product>
</Add>
<Updates Enabled="TRUE" Channel="Broad" />
<Display Level="None" AcceptEULA="TRUE" />
<Property Name="FORCEAPPSHUTDOWN" Value="TRUE" />
</Configuration> - chucksteel 5 years ago -
thanks! will give it a try - psaussey 5 years ago
-
Tried the script and blocks at skucheck, make sure the licence is validated. Put our tenant, our domain. - psaussey 5 years ago
-
Did you get the error before Office installed? The script first installs office and then puts it into device based licensing mode (OPPTransition.exe). If it is failing during setup.exe, then there is an issue with the version of the installer that you are using. - chucksteel 5 years ago
-
setup.exe /download config.xml , installs the office folder. but then office doesnt install, im i missing a step? - psaussey 5 years ago
-
So the install is failing. Time to start checking logs. I'm not sure if there is a flag on setup.exe for additional logging, but that would be an option. Otherwise check the Event Logs to see if the installer reporting errors there. - chucksteel 5 years ago
If you need a uninstall Office nuker, you can use this
https://github.com/OfficeDev/Office-IT-Pro-Deployment-Scripts/tree/master/Office-ProPlus-Deployment/Remove-PreviousOfficeInstalls
Its coded by MS and does a great job of removing all bits of Office.
Comments:
-
thanks - psaussey 5 years ago