I havent used powershell a lot, so i am running into an issue with the argument GROUPING_TAGS
. Can anyone please tell me what is wrong here? It works if i remove the grouping_tag argument.
Set-StrictMode -Version 2.0
$ErrorActionPreference = 'Stop'
$file = "C:\Users\xxxx\Desktop\test.exe"
$command = "Start-Process $file @('/install', '/quiet', '/norestart', 'CID=xxxxxxxxxxxx-123', 'GROUPING_TAGS=”Apple,Banana”')"
Invoke-Expression $command