Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am running into a problem executing a command using cmd.exe in PowerShell. The problem is the path to the command has spaces in it. Seems to be a general problem with PowerShell. Below is an extract:

$base_dir = resolve-path ..\  # this path has spaces in it 
$msdeploy = $base_dir\tools\msdeploy\msdeploy.exe

cmd.exe /c $("""$msdeploy"" -verb:sync -source:....")

I need to have the path to msdeploy resolve through variables as the script is used in a continuous integration process.

The command wont execute due to the spaces. I have tried to wrap the command in "" (quotes) but still no luck. How do I format the $msdeploy variable in this instance?

share|improve this question

2 Answers

up vote 1 down vote accepted

Try calling everything with the $() like this:

$base_dir = resolve-path ..\  # this path has spaces in it 
$msdeploy = $($base_dir)\tools\msdeploy\msdeploy.exe

cmd.exe /c $("$($msdeploy) -verb:sync -source:....")

Edit: I moved the whole command into the $msdeploy variable, and called the $msdeploy by escaping the quotes. I found this link that had a similar problem, so I adjusted your code to match what worked there.

$base_dir = resolve-path ..\
$msdeploy = $("`"" + $base_dir.Path + "\tools\msdeploy\msdeploy.exe`" -verb:sync -source:....")

cmd.exe /c "`"$msdeploy`""
share|improve this answer
unfortunately doesn't work. the single ' act as a literal and does not let the $($msdeploy) variable unpack – Chev Aug 7 '12 at 16:16
Try changing the $msdeploy to what I have up there. Also, change the single ' to " – Nick Aug 7 '12 at 16:45
Bro, saved me hours! Much appreciated. – Chev Aug 8 '12 at 7:13
Hey @Nick have you used Psake at all? – Chev Aug 8 '12 at 7:21
Nope, sorry. I am still new to PowerShell, I just happened to have done this exact same thing in my first script, so it was fresh in my head when I read your question. – Nick Aug 8 '12 at 16:51

Back-ticking "" around the command should make it work:

cmd.exe /c "`"$msdeploy`" -verb:sync -source:..."
share|improve this answer
Thanks for the reply, didn't work however – Chev Aug 7 '12 at 13:59
That is strange. I tried myself setting it up just like you, with the difference that $msdeploy was set up with quotes: $msdeploy = "$base_dir\..." (to ensure it's a string, just old habit). And I could call cmd.exe /c ""$msdeploy`" -help -verb"` without problems. – Torbjörn Bergstedt Aug 8 '12 at 7:05

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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