Deploying Microsoft Office 2019 – UAC Enabled Targets


More information can be found at https://docs.microsoft.com/en-us/deployoffice/office2019/deploy#sample-configurationxml-file-to-use-with-the-office-deployment-tool



Step 1 - Downloading the Microsoft Office Deployment Tool (ODT)


Download the Office Deployment tool and run

https://docs.microsoft.com/en-us/deployoffice/office2019/deploy



Step 2 - Create Office Confirguartion xml file using Office Configuration Tool (OCT)


https://config.office.com/


Select the options you wish to install, enter license key and accept EULA, once done export the file



Step 3 - Download the offline office installation files


Open a command shell as administrator - run the following command in the folder containing theODT files


setup /download configuration.xml


Step 2 - Create the Third Party Template to deploy Office 2019



@ECHO OFF

mkdir c:\tmps

xcopy /Y \\192.168.200.73\apps\office2019\*.* /s c:\tmps

cd \tmps

setup /configure configuration.xml

cd \

rd c:\tmps /S /Q

exit