Dear @Lisa Fansher,
Thank you for reaching out to the Microsoft 365 Q&A forum community. The error 0-2048(0) typically indicates that the Office Deployment Tool (ODT) cannot locate your configuration file.
To help me narrow down the cause, could you please provide the following details?
- Can you share the exact content of your configuration.xml (removing any sensitive info)?
- What version of Windows are you trying to install Office LTSC 2024 on?
- Have you checked any other logs for related errors during the installation process?
In the meantime, please try the following official troubleshooting options which usually resolve issues with basic issues:
Option 1: Verify file placement and naming
- Ensure your
configuration.xml is in the same folder as the ODT executable (setup.exe).
- Confirm the file is named exactly
configuration.xml (without extra spaces or characters).
Option 2: Use a minimal configuration file
Create a new configuration.xml in Notepad with the code below. Replace Product ID and Source Path with your Office LTSC 2024 details (e.g., volume license channel).
<Configuration>
<Add SourcePath="Server\Share\OfficeLTSC2024" OfficeClientEdition="64">
<Product ID="ProPlus2024Volume" PIDKEY="XXXXX-XXXXX-XXXXX-XXXXX-XXXXX">
<Language ID="en-us" />
</Product>
</Add>
</Configuration>
- SourcePath: The network or local path containing Office LTSC 2024 installation files.
- PIDKEY: Your volume license product key (if unavailable, omit this line; you can activate later).
- For Office LTSC Standard 2024, use Standard2024Volume as the Product ID.
For more details, please refer to Microsoft’s official documentation: Deploy Office LTSC 2024 - Office | Microsoft Learn
Option 3: Run the ODT correctly
- Open Command Prompt as Administrator in the ODT folder and execute:
setup.exe /configure
Note: Run the command from the folder containing setup.exe and configuration.xml.
If the issue persists
Step 1: Check file encoding
- Save
configuration.xml with UTF-8 encoding (in Notepad: File > Save As > Encoding: UTF-8).
Step 2: Validate source path
Ensure the SourcePath points to the root folder containing Office setup files (e.g., Office folder with setup.exe). Example:
<Add SourcePath="C:\OfficeLTSC2024" OfficeClientEdition="64">
Step 3: Download installation files
If source files are missing, use the ODT to download them. Create a download.xml:
<Configuration>
<Add SourcePath="C:\OfficeLTSC2024" OfficeClientEdition="64">
<Product ID="ProPlus2024Volume">
<Language ID="en-us" />
</Product>
</Add>
</Configuration>
Run:
setup.exe /download download.xml
Then install using the configuration.xml pointing to C:\OfficeLTSC2024.
For more details, please refer to Microsoft’s official documentation: Configuration options for the Office Deployment Tool - Microsoft 365 Apps | Microsoft Learn
Please note that as a forum moderator, I don’t have access to backend tools or internal systems to investigate further, and certain settings or configurations are managed exclusively by your organization’s administrators, so I’m unable to check or make changes on that side. That said, I truly hope these suggestions help you move forward.
If the error continues, share your configuration.xml (remove any sensitive info), and we’ll review it. Please let me know if you have any further questions or if the problem persists after trying these solutions. Thank you for your patience and cooperation.
If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.