Deploy Office 2019 with SCCM

Today we are going to show how to create office 2019 application using SCCM.

First we need to Download the Office 2016 Deployment Tools and create a Download.xml

click continue and specify the path to store files.

 

Create a Download.xml file and copy this content :

<Configuration>
<Add SourcePath=”C:\Office 2019″ OfficeClientEdition=”32″ >
<Product ID=”ProPlus2019Volume”>
<Language ID=”en-us” />
<Language ID=”fr-fr” />
</Product>
</Add> 
</Configuration>

<Configuration>
<Add OfficeClientEdition=”32″ >
<Product ID=”ProPlus2019Volume”>
<Language ID=”en-us” />
</Product>
</Add>
<Display Level=”None” AcceptEULA=”TRUE” />
</Configuration>

It’s important that you don’t include the SourcePath attribute in the Add section of your Configuration.xml file. That’s because SCCM copies the installation files for an application into a folder under the SCCM client cache folder, and the name of that subfolder is different for each computer. The DisplayLevel and AcceptEULA parameters ensure that our installation is silent. You can also use the PIDKEY setting if you don’t have a KMS server for activation.

Once the 2 files are created and modified, we can launch the download using our Download.xml file :

 

Now we are creating Application using SCCM

On the Detection Method tab , choose Add Clause

then click next and it will complete the application. you can distribute content to DP and deploy to your specific collections device.

 

There is a new set of Administrative Template files (ADMX/ADML) for Group Policy settings. You can download the Administrative Template files using this Microsoft Download Center link.

Exit mobile version