I'm having trouble with installing Tableau Desktop with native installer arguments with Chocolatey. Basically, I know that Tableau Desktop .exe installer can take multiple arguments such as:
- ACTIVATE_KEY="<activation_key>"
- REGISTER=1 (if we want Tableau Desktop to register itself during installation)
So, i tried installing Tableau Desktop 2020.1.3 with this command:
choco install 'Tableau-Desktop' --version '2020.1.3' --yes --force --install-arguments='/ACTIVATE_KEY=""<activation_key>""'
Tableau Desktop was installed just fine but it didn't get activated. Was there anything I did wrong? I tried reading Chocolatey documentation already and it says that for install arguments, we just need to do something like this:
In PowerShell.exe, you must pass it like this: -ia '/yo=""Spaces spaces""'. No other combination will work. In PowerShell.exe if you are on version v3+, you can try --% before -ia to just pass the args through as is, which means it should not require any special
I do have another question as well around this "install arguments" in chocolatey. Basically, how would one pass multiple install arguments to chocolatey "--install-arguments" option/switch?
Thanks so much in advance!