I am trying to execute the following line from a powershell script:
msiexec /qb /i ps-pulse-win-5.2r5.1-b897-64bitinstaller.msi CONFIGFILE="ALS GSLB.jnprpreconfig"
This works when called from a DOS command line, but MSIEXEC complains that things aren't right when I call it from powershell.
This does work...
msiexec /qb /i ps-pulse-win-5.2r5.1-b897-64bitinstaller.msi
Obviously SOMETHING is messing with my arguments, but I can't figure out how to make it work.
(Removed the "/")
I just used Powershell to install GAPS on my core servers, and I had a command like this. I like this more verbose syntax because it is more readable, and I can include comments per command line option to save myself and others time re-used the command in the future.
I am not sure that your
/CONFIGFILE=
is right though./CONFIGFILE
doesn't seem to be an msiexec option. Perhaps you should skip the leading/
for that? If that slash should be stripped the command would look like this.