Error when specifying options

Hi

I’m sure this is something silly but still getting to grips with the PSAT - slowly moving everything from pure SCCM installs.

Trying to roll out an EXE - Instructions say a silent install with accepting the EULA and language would be “pbidesktopsetup.exe -s ACCEPT_EULA=1 LANGUAGE en-us”

In my Deploy-Application ive got “Execute-Process -Path ‘PBIDesktopSetup_x64.exe’ -Parameters ‘-s -ACCEPT_EULA=1 -LANGUAGE en-us’” but this throws up the below when i try run it.

I’m sure its something really simple and i’ll kick my self but can someone point me in the right direction please?

Thanks!

You have an additional - in front of LANGUAGE and ACCEPT_EULA

Try:

Execute-Process -Path 'PBIDesktopSetup_x64.exe' -Parameters '-s ACCEPT_EULA=1 LANGUAGE=en-us

I would also suggest using -norestart and -log

That was it - knew it would be something like that thank you !