Setup.exe Configure. Configuration-office2021enterprise.xml -
Using an O365 XML template for Office 2021. Fix: Ensure Product ID="ProPlus2021Volume" (for enterprise) or Standard2021Volume . Note the "Volume" suffix.
[xml]$config = Get-Content "configuration-office2021enterprise.xml" $config.Configuration.Add.Product | Where-Object $_.ID -eq "ProPlus2021Volume" # Append Visio $visio = $config.CreateElement("Product") $visio.SetAttribute("ID", "VisioPro2021Volume") $config.Configuration.Add.AppendChild($visio) $config.Save("configuration-modified.xml") setup.exe configure. configuration-office2021enterprise.xml
Download the latest setup.exe from the official Microsoft Download Center . Using an O365 XML template for Office 2021