I am trying to perform a silent install of IBM Rational Doors 9.7 as explained here.
I want to perform the install with Powershell. I am constructing the arguments to Start-Process to run the installer like this:
$doors97installArgs = '/s /v"/l*v"install.log" /qn INSTALLDIR="C:\Program Files\IBM\Rational\DOORS\9.7.2.3\" CLIENTDATA="36990@<redacted>" LAPAGREE="Yes" TLLICENSESERVER="27200@<redacted>" -wait -verb open'
For Start-Process I am using this:
Start-Process -WorkingDirectory $doors97location -FilePath $doors97setupFullPath -ArgumentList $doors97installArgs
The values in $doors97location and $doors97setupFullPath evaluate correctly.
When Start-Process runs it immediately exits with no error message. What am I doing wrong?