How is your issue going? Has it been resolved yet? If it has, please consider accepting the answer as it helps others sharing the same problem benefit too. Thank you :)
VP
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Please assist with installing Word and Excel via ODT on a WS 2025 server
We attempted the installation using the tool at https://config.office.com/deploymentsettings and configured the file for an offline setup.
However, the server is unable to download the necessary files using:
setup.exe /download configuration-offline.xml
To proceed perform the installation:
setup.exe /configure configuration-offline.xml
We also tried downloading the files first on a local machine, but this approach apparently corrupted some DLLs.
It's mandatory to have internet access on the server?
How is your issue going? Has it been resolved yet? If it has, please consider accepting the answer as it helps others sharing the same problem benefit too. Thank you :)
VP
Internet access on your Windows Server 2025 machine is not mandatory for deploying Office applications. Your goal of an offline installation is completely supported by the Office Deployment Tool. The corrupted DLL errors you encountered typically result from an interrupted download process, file manipulation during the transfer, or antivirus software quarantining specific cabinet files or stream files located in the Office\Data directory.
To ensure a clean deployment, run your download command on a stable, internet-connected workstation. Wait until the command prompt completely returns to the system path, such as C:\ODT, which guarantees all payload files are verified. Once the download finishes, compress the entire working directory into a ZIP archive, transfer it to your server, and extract it to a local path like C:\OfflineOffice to maintain file integrity.
The most critical configuration step requires modifying your offline XML file to explicitly define the local file repository. You must add the SourcePath attribute to the Add element, formatting it as SourcePath="C:\OfflineOffice". If this attribute is missing, the setup.exe executable will default to contacting the Microsoft Content Delivery Network, resulting in standard network timeout error codes like 30088-1028. Executing your configure command from this verified local setup will complete the installation without requiring external network access.
Hope this answer brought you some useful information. If it did, please consider hitting "accept answer". Should you have any questions, feel free to leave a comment.
VP
Internet access on the server is not mandatory if the installation files are downloaded in advance and the configuration XML correctly points to that local source.
To install Word and Excel on Windows Server using ODT without internet on the server, the supported pattern from the context is:
setup.exe and a download configuration file (for example downloadconfig.xml) in a folder. <Configuration>
<Add SourcePath="\\server\share" OfficeClientEdition="32">
<Product ID="O365ProPlusRetail">
<Language ID="en-us" />
</Product>
</Add>
</Configuration>
setup.exe /download downloadconfig.xml
setup.exe) is preserved.setup.exe /configure will try to download again from the CDN and can hang. <Configuration>
<Add SourcePath="\\Server\Share" OfficeClientEdition="32">
<Product ID="O365ProPlusRetail">
<Language ID="en-us" />
<ExcludeApp ID="Publisher" />
</Product>
</Add>
<Display Level="None" AcceptEULA="TRUE" />
</Configuration>
SourcePath, OfficeClientEdition, Product ID, and Language ID to match the downloaded content and the desired apps (Word/Excel as part of the chosen suite).setup.exe and the configuration XML, run:
setup.exe /configure installconfig.xml
SourcePath points to the local or network location with the Office files, the server does not need internet access for the installation step.SourcePath in the XML exactly matches the location of the Office files.SourcePath, ODT will attempt to download from the CDN, which can fail or stall on a server without internet.In summary, internet access is required only on at least one machine to download the Office installation files with ODT. The server itself can remain offline if the configuration XML for /configure correctly references a local or network SourcePath containing the pre-downloaded Office files.
References: