I am trying to write a powershell script to install an MSI file with a few parameters. I was told the MSI file needs the following parameters: /qn SERVICE_URL="https://.....com/InstallerServer" SSL="1"
I took a stab at it, but it failed. Can someone offer some advice?
This is what I tried:
Execute-MSI -Action Install –Path 'InstallerService.msi'-Parameters "/QN /SERVICE_URL=https://…..com/InstallerServer /SSL=1"