Share via

Install Word and Excel via ODT on Windows Server 2025

David Soto Valverde 0 Reputation points
2026-03-03T17:47:23.0633333+00:00

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?

Windows for business | Windows Server | Devices and deployment | Set up, install, or upgrade
0 comments No comments
{count} votes

3 answers

Sort by: Most helpful
  1. VPHAN 25,000 Reputation points Independent Advisor
    2026-03-06T09:12:30.7066667+00:00

    Hi David Soto Valverde,

    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

    0 comments No comments

  2. VPHAN 25,000 Reputation points Independent Advisor
    2026-03-03T18:32:06.0533333+00:00

    Hi David Soto Valverde,

    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

    0 comments No comments

  3. Q&A Assist
    2026-03-03T17:47:39.2566667+00:00
    AI generated content. This question contains an answer created with AI from Q&A Assist. Learn more

    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:

    1. Download installation files on a machine with internet
      • On an internet-connected machine, place setup.exe and a download configuration file (for example downloadconfig.xml) in a folder.
      • The configuration must specify a SourcePath where the files will be stored, and the products/languages to download. Example pattern:
             <Configuration>
               <Add SourcePath="\\server\share" OfficeClientEdition="32">
                 <Product ID="O365ProPlusRetail">
                   <Language ID="en-us" />
                 </Product>
               </Add>
             </Configuration>
        
      • Run:
             setup.exe /download downloadconfig.xml
        
      • Verify that an Office folder with the downloaded files exists in the specified SourcePath.
    2. Copy the downloaded files to a share or local path accessible by the server
      • Ensure the folder structure (including the Office folder and setup.exe) is preserved.
    3. Create a configuration file for installation that uses the local SourcePath
      • The key point from the Q&A in the context is that the XML must explicitly specify the path to the already-downloaded files; otherwise setup.exe /configure will try to download again from the CDN and can hang.
      • Example pattern for install configuration:
             <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>
        
      • Adjust SourcePath, OfficeClientEdition, Product ID, and Language ID to match the downloaded content and the desired apps (Word/Excel as part of the chosen suite).
    4. Run the install on the server using configure mode
      • On the server, from an elevated command prompt in the folder containing setup.exe and the configuration XML, run:
             setup.exe /configure installconfig.xml
        
      • Because SourcePath points to the local or network location with the Office files, the server does not need internet access for the installation step.
    5. If download or configure hangs
      • Confirm that:
        • SourcePath in the XML exactly matches the location of the Office files.
        • The Office folder exists at that path.
        • The newest version of ODT is used.
      • If the configuration file does not include 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:

    0 comments No comments

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.