Forum Discussion
Where to download the full installer of Microsoft office 365 download?
Trying to set up Microsoft Office 365 on my new PC with a slow internet, so the little web-based installer that downloads everything piece by piece isn't going to cut it . I need the full package upfront so I can install Office on my Windows 11 PC in one go without constant re-downloading if the connection drops.
Anyone know the proper way to download Microsoft Office 365 offline installer for PC? I want to make sure I'm going through a legitimate channel tied to an actual license/account rather than some random link, so pointers to the right official process would be great.
P.S It should be working fine on both Windows 11 and Windows 10.
11 Replies
- TarvicBrass Contributor
For users who require fine-grained control over the download of Microsoft Office 365 for the desktop, the Office Deployment Tool is an official command-line utility for downloading and deploying Microsoft 365 applications. It allows you to select the architecture, product, language and update channel via an XML configuration file. Microsoft recommends downloading the latest version of this tool from its official download centre.
How to microsoft office 365 download for pc
Step 1: Download the latest deployment tool from the official Microsoft Download Center. Run the downloaded executable and extract its files to a simple folder, such as C:\ODT. The extracted files include setup.exe and sample XML configuration files.
Step 2: Open Notepad and create a new file named config.xml. For example, the following configuration downloads the 64-bit English version of Microsoft 365 Apps for enterprise from the Current Channel:
<Configuration>
<Add OfficeClientEdition="64" Channel="Current">
<Product ID="O365ProPlusRetail">
<Language ID="en-us" />
</Product>
</Add>
</Configuration>
The product ID O365ProPlusRetail is used for Microsoft 365 Apps for enterprise, while OfficeClientEdition="64" selects the 64-bit edition.
Step 3: Save config.xml in the same C:\ODT folder as setup.exe. Make sure Windows has not accidentally saved it as config.xml.txt.
Step 4: Open Command Prompt as administrator and move to the folder:
cd C:\ODT
Then start downloading the installation files:
setup.exe /download config.xml
The download runs through the command line and may appear quiet while files are being retrieved. Microsoft documents /download as the mode for downloading the installation files specified by the XML configuration.
Step 5: Wait for the download to finish. An Office folder containing the installation data should appear in the deployment directory. The download can be several gigabytes, so allow enough disk space and do not close the process prematurely.
Step 6: To install the downloaded files on the PC, keep setup.exe, config.xml, and the downloaded Office folder together. Open an administrator Command Prompt in that folder and run:
setup.exe /configure config.xml
The /configure mode reads the XML configuration and performs the installation.
Step 7: Wait until installation completes, then open Word or another installed application and sign in with the account or organization credentials associated with the appropriate Microsoft 365 license.
This method is particularly useful when you wish to have greater control over the architecture, language, update channels or local installation files than is provided by the standard web installer. The configuration should always match the Microsoft 365 products for which your account or organisation holds a licence.