Avatar of Abdul Wahid
Abdul Wahid
 asked on

Install MS Office 2016 and uninstall MS Office 2010

I have Microsoft office 2010 installed on over 500 clients machine, recently we purchased MS office 2016, I would like to configure a GPO to install MS office 2016 and remove MS office 2010 from clients machine, please help me in this regards and I am sure it will be  possible with script .

Regards
Abdul
Active DirectoryMicrosoft OfficeWindows Server 2012

Avatar of undefined
Last Comment
Mdlinnett

8/22/2022 - Mon
ASKER CERTIFIED SOLUTION
Mdlinnett

THIS SOLUTION ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
GET A PERSONALIZED SOLUTION
Ask your own question & get feedback from real experts
Find out why thousands trust the EE community with their toughest problems.
SOLUTION
Abdul Wahid

THIS SOLUTION ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
GET A PERSONALIZED SOLUTION
Ask your own question & get feedback from real experts
Find out why thousands trust the EE community with their toughest problems.
Mdlinnett

Hi Abdul,

You'll need to do some testing, using the links I provided you will find the pages containing the necessary information.

To give you some help, the config.xml file I used for my Office 2016 deployment is as follows:

<Configuration>
 <Add SourcePath="C:\Office16" OfficeClientEdition="32" >
    <Product ID="O365ProPlusRetail" > 
      <Language ID="en-us" />        
    </Product>
 </Add>
 <Display Level="None" AcceptEULA="TRUE" />
 <Property Name="SharedComputerLicensing" Value="1" />
 <Property Name="PinIconsToTaskbar" Value="FALSE" />
</Configuration>

I had to include the 'SharedComputerLicensing' option as Office was deployed in an RDS environment.

I included the 'PinIconsToTaskbar' option as I didn't want the icons on all users taskbars.

Then, with the Office Deployment Toolkit in the folder C:\office16, I ran the following from an administrative command prompt.

cd c:\office16
setup.exe /download configuration.xml

This downloads the installation files to the computer.  Then I ran:

cd c:\office16
setup.exe /configure configuration.xml

This installed Office 2016 using the files I'd just downloaded.

I would suggest that you perform the 'setup.exe /download etc' option on a Server, then run the 'setup.exe /configure etc' on your Clients, pointing at the location the Office Deployment Tool and installation files were downloaded to.  This will limit the load on your WAN connection.
This is the best money I have ever spent. I cannot not tell you how many times these folks have saved my bacon. I learn so much from the contributors.
rwheeler23