How to Install Microsoft Office 2024 LTSC with ODT & OCT (Step-by-Step Guide)
This guide shows you exactly how to download, install, and customize Microsoft Office 2024 LTSC using the Office Deployment Tool (ODT) and the Office Customization Tool (OCT). Copy the XML template, run the commands, and deploy with confidence.
Download Office 2024 LTSC Installation Guide.
Table of Contents
- Why Use ODT & OCT?
- Prerequisites
- Step 1 — Download & Extract ODT
- Step 2 — Create Configuration XML
- Step 3 — Run ODT Commands
- Step 4 — Customize with OCT
- Step 5 — Verify Installation
- Troubleshooting
- Best Practices
- FAQs
Why Use ODT & OCT for Office 2024 LTSC?
Office 2024 LTSC delivers long-term stability and a predictable feature set. ODT handles the download and installation via a configuration XML, while OCT provides a friendly web interface to generate that XML. Together, they offer reliable, repeatable deployments for single PCs or entire organizations.
Prerequisites
- Windows 10 or Windows 11 (64-bit)
- Administrator rights on the target PC
- Internet access for the initial download and activation
- Office 2024 LTSC installer files (provided with your purchase)
Official resources:
Download Office Deployment Tool (ODT) ·
Open Office Customization Tool (OCT) ·
Office LTSC Overview
Step 1 — Download & Extract the Office Deployment Tool (ODT)
- Download the latest ODT from Microsoft.
- Run the ODT executable and extract the files to a folder, e.g.
C:\ODT
.
Tip: Keep ODT in a short path like C:\ODT
to avoid issues with long file names.
Step 2 — Create the Configuration XML
Create a file named configuration.xml
in your ODT folder. Use the template below and replace placeholders with your exact product and language choices.
<Configuration>
<Add OfficeClientEdition="64">
<Product ID="ProPlus2024Volume">
<Language ID="en-us" />
</Product>
</Add>
<Display Level="Full" AcceptEULA="TRUE" />
<Updates Enabled="TRUE" />
<RemoveMSI />
</Configuration>
Step 3 — Run ODT Commands (Download & Install)
- Open Command Prompt as Administrator.
- Navigate to the ODT folder:
cd /d C:\ODT
- Download Office files locally:
setup.exe /download configuration.xml
- Install using your configuration:
setup.exe /configure configuration.xml
Heads up: The download step runs silently; watch network usage or the folder size to confirm progress.
Step 4 — Customize with the Office Customization Tool (OCT)
- Open config.office.com.
- Select your product, language, app selection, update preferences, and UI level.
- Export the configuration as XML and save it as
configuration.xml
(or another name) inC:\ODT
. - Run the install again with:
setup.exe /configure configuration.xml
Tip: OCT helps avoid manual XML mistakes and keeps your deployment standardized.
Step 5 — Verify Installation
- Launch Word or Excel to confirm the apps open correctly.
- Check language and included apps match your configuration.
- Confirm updates are enabled (security updates for LTSC).
Activate Office 2024 Professional Plus LTSC
After installation, you’ll need to activate Office using your license key. You can activate it using the graphical interface (GUI) or via Command Prompt.
Activate via Office Application (GUI Method)
-
Open any Office app (e.g., Word, Excel).
-
You’ll be prompted to enter a product key.
-
Enter your 25-character Office 2024 LTSC license key.
-
Click Activate and wait for verification.
-
Once successful, Office will display a message confirming activation.
Troubleshooting
Installer seems stuck
Allow time for large downloads. Temporarily disable strict firewalls or proxies if they block content delivery. Re-run as Administrator.
Wrong language or app set
Verify Language ID
and ExcludeApp
entries in your XML. Re-run the configure command.
Legacy Office conflicts
Ensure <RemoveMSI />
is present to remove older MSI-based Office versions before install.
Best Practices
- Keep ODT up to date; re-download periodically.
- Store XML files in version control for repeatable deployments.
- Test on a pilot machine before broader rollout.
- Document your standard OCT profile for teams to reuse.
FAQs
Can I install offline after downloading?
Yes. Once you’ve downloaded the Office files with ODT, you can install without continuous internet access.
What are the exact product and language IDs?
Use the product and language IDs provided with your license or in Microsoft’s deployment documentation. Replace [YOUR_PRODUCT_ID]
and [YOUR_LANGUAGE_ID]
in the XML accordingly.
Do I need to mention MAK or volume activation?
No. This guide intentionally avoids MAK/volume activation. Focus on download, install, and customization steps.
Can I exclude apps like Access or Publisher?
Yes. Use <ExcludeApp ID="AppName"/>
entries for any apps you don’t want installed.
Is OCT required?
No, but it’s recommended. OCT simplifies creating a clean, valid configuration XML for ODT.
External References
Office Deployment Tool (ODT) ·
Office Customization Tool (OCT) ·
Office LTSC Overview