I can run this fine:

$msbuild = "C:\WINDOWS\Microsoft.NET\Framework\v3.5\MSBuild.exe" 
start-process $msbuild -wait

But when I run this code (below) I get an error:

$msbuild = "C:\WINDOWS\Microsoft.NET\Framework\v3.5\MSBuild.exe /v:q /nologo" 
start-process $msbuild -wait

Is there a way I can pass parameters to MSBuild using start-process? I'm open to not using start-process, the only reason I used it was I needed to have the "command" as a variable.

When I have
C:\WINDOWS\Microsoft.NET\Framework\v3.5\MSBuild.exe /v:q /nologo
on a line by itself, how does that get handled in Powershell?

Should I be using some kind of eval() kind of function instead?

link|improve this question

71% accept rate
See blogs.msdn.com/powershell/archive/2007/01/16/… for alternatives to start-process. – jeffamaphone Mar 16 '09 at 17:01
Thanks jeffamaphone, this was some good reference info also. – brun Mar 16 '09 at 17:11
Keep in mind that Start-Process is a new feature in V2. The information in that post is very good but some of it is not really necessary anymore in V2. – EBGreen Mar 16 '09 at 17:19
Start-Process itself is new to V2? Can you elaborate a little? I don't have any machine with V1 installed to test. – brun Mar 16 '09 at 18:18
I just mean that the Start-Process commandlet did not exist in V1. In V1 you had to use one of the methods listed in the blog post that Jef linked. – EBGreen Mar 16 '09 at 18:44
show 1 more comment
feedback

4 Answers

up vote 20 down vote accepted

you are going to want to separate your arguments into separate parameter

$msbuild = "C:\WINDOWS\Microsoft.NET\Framework\v3.5\MSBuild.exe"
$args = "/v:q /nologo"
start-process $msbuild $args 
link|improve this answer
feedback

Using explicit parameters, it would be:

$msbuild = 'C:\WINDOWS\Microsoft.NET\Framework\v3.5\MSBuild.exe'
start-Process -FilePath $msbuild -ArgumentList '/v:q,/nologo'
link|improve this answer
Missing quotes? – Richard Dingwall Jul 5 '11 at 11:22
I think it would be ok without them, but it would definitely be ok with them so I will edit it – EBGreen Jul 5 '11 at 12:35
feedback

I've found using cmd works well as an alternative, especially when you need to pipe the output from the called application (espeically when it doesn't have built in logging, unlike msbuild)

cmd /C "$msbuild $args" >> $outputfile

link|improve this answer
feedback

Unless the OP is using PowerShell Community Extensions which does provide a Start-Process cmdlet along with a bunch of others. If this the case then Glennular's solution works a treat since it matches the positional parameters of pscx\start-process : -path (position 1) -arguments (positon 2).

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.