Solved Install Office 365 with XML files but without manual entry of commands?


Quick question even when this thread is resolved.

Code:
@echo off
cd /d "%~dp0"
setup.exe /configure installconfig.xml

Code:
@echo off
cd /d "%~dp0"
setup.exe /download installconfig.xml


Can I use the same batch file command to download the Office Data files replacing the "/CONFIGURE " with the "/DOWNLOAD" switch?
 

My Computer

System One

  • OS
    Windows 11 Pro 22H2
Can I use the same batch file command to download the Office Data files replacing the "/CONFIGURE " with the "/DOWNLOAD" switch?
Yes.

When setup.exe downloads the files, it will create a new folder path "Office\Data\" in the same folder as setup.exe. To install the downloaded files, this "Office" folder must be always be in the same folder as setup.exe.

Don't rename or move the folder, or its contents. If you do, then setup.exe halts and complains it can't find the install files.
 

My Computer

System One

  • OS
    Windows 7
Once again, many thanks for the time effort 👌
 

My Computer

System One

  • OS
    Windows 11 Pro 22H2
Back
Top Bottom