0

I'm trying to install Office2019Standard on a Windows 10 Home PC, via VLSC. I've done this on several other computers at this organisation, using the same script. Now it doesn't work anymore.

I've downloaded the Deployment tool, created an XML script, and then executed it from Powershell with admin rights.

office2019.xml:

<Configuration>

  <Add OfficeClientEdition="64" Channel="Standard2019Volume" SourcePath="C:\VLSC">

    <Product ID="Standard2019Volume" PIDKEY="XXXXX-XXXXX-XXXXX-XXXXX-XXXXX" >
      <Language ID="en-us" />
      <Language ID="nl-nl" />
    </Product>
  </Add>

</Configuration>

Powershell

> cd \VLSC
> ./setup /configure .\office2019.xml

Result

this product can't be installed on the selected update channel

I've checked that all Office installations are removed with the following powershell command which does return nothing:

> Get-AppxPackage -name "Microsoft.Office.Desktop"

How can I fix this problem and get Office 2019 Standard installed?

SPRBRN
  • 8,149

1 Answers1

1

The Office Customization Tool creates a complete XML configuration file with all different settings like language and versions. After downloading this I could run the deployment tool and finish the installation.

SPRBRN
  • 8,149