vote up 4 vote down star
1

As far as I know, a forward slash is not a reserved keyword in powershell

But running the following in cmd pops up an about dialog

"C:\Program Files\TortoiseSVN\bin\TortoiseProc.exe" /command:about

The same in powershell gives:

'C:\Program Files\TortoiseSVN\bin\TortoiseProc.exe' /command:about

You must provide a value expression on the right-hand side of the '/' operator.
At line:1 char:54
+ 'C:\Program Files\TortoiseSVN\bin\TortoiseProc.exe' /c <<<< ommand:about

What gives?

flag

68% accept rate

1 Answer

vote up 8 vote down check

Put an ampersand character in front of the command

&"C:\Program Files\TortoiseSVN\bin\TortoiseProc.exe" /command:about

Otherwise, it thinks you're trying to divide the string literal "C:\Program Files\TortoiseSVN\bin\TortoiseProc.exe" by something, but it doesn't know by what.

link|flag
Ah thanks that makes sense – George Mauer Nov 3 at 17:01

Your Answer

Get an OpenID
or

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