With BAT/CMD script I can simply use "msiexec /i /quiet /norestart" and then check %errorlevel% for the result. With VBScript, using the Wscript.Shell object Run() method, I can get the result like this "result = oShell.Run("msiexec /i ...", 1, True)". How can I do this with PowerShell?

link|improve this question

64% accept rate
feedback

2 Answers

up vote 10 down vote accepted

I would wrap that up in Start-Process and use the ExitCode property of the resulting process object. For example

(Start-Process -FilePath "msiexec.exe" -ArgumentList "<<whatever>>" -Wait -Passthru).ExitCode
link|improve this answer
That's what I was looking for! However, it's "ArgumentList" not "ArgumentsList", but in any case you answered the question - thank you! – Skatterbrainz Nov 12 '10 at 13:24
Haa..that was a typo. I just edited my answer. – ravikanth Nov 12 '10 at 13:43
feedback
$LastExitCode

or

$?

depending on what you're after. The former is an integer, the latter just a boolean. Furthermore, $LastExitCode is only populated for native programs being run, while $? generally tells whether the last command run was successful or not – so it will also be set for cmdlets.

PS Home:\> cmd /c "echo foo"; $?,$LASTEXITCODE
foo
True
0
PS Home:\> cmd /c "ech foo"; $?,$LASTEXITCODE
'ech' is not recognized as an internal or external command,
operable program or batch file.
False
1
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.