This process uses the Office Deployment Tool (ODT). Unlike the standard installation where you double-click an installer and click "Next," this method gives you granular control over what gets installed, where it comes from, and how it is licensed.
You can create the configuration-office2021enterprise.xml file from scratch or modify an existing one. For Office 2021, Microsoft provides tools and documentation to help create these files.
Using the Office Deployment Tool (ODT): Microsoft offers the Office Deployment Tool (ODT) which you can use to create a configuration file. Download the ODT from the official Microsoft website. setup.exe configure. configuration-office2021enterprise.xml
Create a Configuration File:
Package setup.exe + XML into .intunewin.
Install command same as above.
Use %ProgramFiles%\Microsoft Office\root\Office16\WINWORD.EXE as detection rule. This process uses the Office Deployment Tool (ODT)
This paper examines unattended deployment of Microsoft Office 2021 Enterprise using the Office Deployment Tool (ODT) and its core executable (setup.exe) driven by a configuration XML (commonly named configuration-office2021enterprise.xml). It covers architecture, XML schema and elements, version and channel control, language and product selection, installation options, servicing/updates, network and performance considerations, troubleshooting, security implications, and automation best practices. Implementation examples, sample configuration files, and operational recommendations are provided.
setup.exe /configure configuration-office2021enterprise.xmlWhen rolling out Microsoft Office 2021 Enterprise across hundreds or thousands of machines, manual installation is not an option. The mantra of efficient IT administration is consistency, automation, and control. At the heart of Microsoft’s deployment toolkit for Office 2021 lies a powerful trio: setup.exe, the /configure switch, and an XML configuration file. Step 2: Creating the Configuration File You can
This article unpacks every aspect of the command setup.exe /configure configuration-office2021enterprise.xml, explaining how it works, how to build the XML, best practices, and troubleshooting.
<Add>: This is the primary command.
SourcePath: Where should setup.exe look for the files? If you have already downloaded the source files, point this to that folder. If you omit this, the tool will attempt to download directly from the internet.OfficeClientEdition: Set to "64-bit" (recommended for modern PCs) or "32-bit".Channel: For Office 2021 Enterprise/Volume, this MUST be set to "PerpetualVL2021".<Product ID>:
"ProPlus2021Volume": The standard Enterprise suite."Standard2021Volume": For the Standard suite.<Language ID>: The language code (e.g., "en-us", "fr-fr").<Display Level="Full" AcceptEULA="TRUE" />: Prevents the user from seeing installation prompts and automatically accepts the license terms.<Property Name="AUTOACTIVATE" Value="1" />: (Optional) Attempts to auto-activate if you have a KMS server or valid Volume License keys setup in your environment.<RemoveMSI All="True" />: Highly recommended. It removes old MSI-based versions of Office (like Office 2013/2010) before installing 2021 to prevent conflicts.There are two ways to proceed: Downloading first (recommended) or Installing directly from the web.
setup.exe periodically from Microsoft.Level="Verbose" for deep troubleshooting.