Running msiexec with PowerShell

10

1

I'm try to run msiexec in PowerShell but I keep getting an error message. If I run it from cmd then it's all fine.

Can someone please let me know how I can run this command in PowerShell?

This is the command I have typed in PowerShell:

msiexec.exe /qb /I "C:\m_temp\Floating\PrimeWixInstaller.msi" INSTALLLOCATION="C:\Program Files\Mathcad\Mathcad Prime 1.0" ALT_DOC_DIR="C:\Program Files\Mathcad\Mathcad Prime 1.0"

When I try to run the command then the Windows Installer help window pops up:

Windows Installer help window

user630320

Posted 2011-10-28T07:29:37.213

Reputation: 113

Answers

7

It happens because the arguments contain spaces (for example, "C:\Program Files\Mathcad\Mathcad Prime 1.0"). In such cases you must escape the quotes around the arguments.

The escape character in PowerShell is the grave-accent(`).

So the command should look something like this:

msiexec.exe /qb /I "C:\myInstaller.msi" INSTALLLOCATION=`"C:\Program Files\installFolder`" ALT_DOC_DIR=`"C:\Program Files\otherFolder`"

Siim K

Posted 2011-10-28T07:29:37.213

Reputation: 6 776