Steps to create Offline Office 365 Installation file for Windows using ODT

Apps ICS 0 Reputation points
2026-08-18T06:22:26.7433333+00:00

Hi all,

I downloaded the the Office Deployment Tool from this site https://www.microsoft.com/en-us/download/details.aspx?id=49117

Now i wanted to create offline office 365 installation file. Send me the steps

Microsoft 365 and Office | Development | Other
0 comments No comments

2 answers

Sort by: Most helpful
  1. Liora 775 Reputation points Independent Advisor
    2026-08-18T06:54:07.4366667+00:00

    Dear @Apps ICS,

    I hope you’re having a good day. 

    You can use the Office Deployment Tool (ODT) to download the Microsoft 365 installation files once and then use those files for offline installation on one or more Windows devices.

    1. Extract the Office Deployment Tool

    Download and run the ODT package you already obtained, then extract it to a folder such as: C:\ODT

    You should see setup.exe in that folder.

    1. Create a configuration XML file

    Create a file named download.xml in the same folder with content similar to the following:

    <Configuration>
      <Add OfficeClientEdition="64" Channel="Current">
        <Product ID="O365ProPlusRetail">
          <Language ID="en-us" />
        </Product>
      </Add>
    </Configuration>
    
    

    You can change the language or Office edition as needed.

    1. Download the offline installation files

    Open Command Prompt as Administrator and run:

    cd C:\ODT
    setup.exe /download download.xml
    
    

    ODT will download the Microsoft 365 installation files into an Office subfolder under your download location.

    1. Use the downloaded files for offline installation

    Once the download is complete, keep the following together:

    1. C:\ODT\setup.exe
    2. C:\ODT\download.xml
    3. C:\ODT\Office\

    To install Microsoft 365 from these local files, run:

    setup.exe /configure download.xml
    
    

    No additional Office download will be required if the installation files are already present locally.

    For reference:

    These steps will create an offline Microsoft 365 installation source that you can copy to other machines or a network share and use for deployment.

    Warm regards,  


    If the answer is helpful, please select "Yes" and kindly upvote it. If you have extra questions about this answer, please click "Comment".  

    Note: Please follow the steps in the forum documentation to enable email notifications if you want to receive the related email notification for this thread.  

    Was this answer helpful?


  2. AI answer

    2026-08-18T06:22:41.5733333+00:00
    1. Create a folder on the local drive, for example C:\ODT.
    2. Download and extract the Office Deployment Tool into that folder.
    3. Create a configuration XML file in C:\ODT. For example, for a 32-bit English installation of Microsoft 365 Apps for enterprise:
    <Configuration>
      <Add OfficeClientEdition="32">
        <Product ID="O365ProPlusRetail">
          <Language ID="en-us" />
        </Product>
      </Add>
    </Configuration>
    

    Save it with a name such as installOfficeProPlus32.xml.

    1. Open Run or a Command Prompt, then run the download command:
    c:\odt\setup.exe /download installOfficeProPlus32.xml
    
    1. If prompted by User Account Control, select Yes.
    2. Wait for the download to finish. A blank dialog box can appear while files are downloading. The download is complete when that dialog closes and a new Office folder appears inside C:\ODT.
    3. Validate the download by checking the download location for the Office folder and files. If there are problems, use the newest version of ODT and review the log file in the %temp% folder.
    4. To install from the downloaded offline files, run:
    c:\odt\setup.exe /configure installOfficeProPlus32.xml
    
    1. After installation, connect to the Internet, open an Office app, and activate it. Then go to File > Account > Update Options > Update Now.

    For a 64-bit installation, use this XML instead:

    <Configuration>
      <Add OfficeClientEdition="64">
        <Product ID="O365ProPlusRetail">
          <Language ID="en-us" />
        </Product>
      </Add>
    </Configuration>
    

    Notes:

    • The downloaded installation files create an Office folder.
    • A one-language Microsoft 365 Apps package is approximately 2.8 GB.
    • If downloading from a local network source by using DownloadPath, a Version must also be specified in the XML.

    AI-generated content may be incorrect. Read our transparency notes for more information.

    Was this answer helpful?

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.