Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a service I need to install that has a commandline that looks something like this:

d:\My Service\service.exe /AsService /Config="d:\Config Files\TheConfig.config"

This is pretty much the worst-case scenario for a commandline. The issue I have is with the double quotes in the args.

This is what I've tried that is close but not quite:

$cmd = "create ""$ServiceName"" binPath= $FullServicePath start= $StartMethod"
Invoke-Expression "cmd.exe /c sc.exe $cmd" | Write-Host

Where $FullServicePath is:

d:\My Service\service.exe /AsService /Config="d:\Config Files\TheConfig.config"

Suggestions? I'm open to anything. WMI. Whatever.

Help!

share|improve this question

2 Answers

Try declaring $FullServicePath like this:

$FullServicePath = "d:\My Service\service.exe /AsService /Config=`"d:\Config Files\TheConfig.config`""

This uses the escape character ` to tell it to process the quotes as text. (The escape character is the back tic next to the 1 key on most keyboards)

I believe you can also use this syntax:

$FullServicePath = $('d:\My Service\service.exe /AsService /Config="d:\Config Files\TheConfig.config"') 

Both created the variable without a problem on my system.

When you call the $FullServicePath do it like this: $($FullServicePath)

share|improve this answer
I tried this, but I can't seem to pass it to sc.exe or installutil correctly. I've tried every which way, but it doesn't come out right. – Anderson Imes Aug 1 '12 at 21:49
Sorry, I think I misunderstood what you asked. I added a different way to call the $FullServicePath. Try this, see what happens. I do this a lot when creating variables that are a combination of variables and calling variables with strange characters. – Nick Aug 1 '12 at 22:27

This is a method i used .

Installing a service in powershell

share|improve this answer
Do you know whether or not the double quotes on the commandline would be supported? The article doesn't seem to indicate one way or the other. – Anderson Imes Aug 1 '12 at 16:02
I am not sure give it a try and if it does not work try some thing like this '"$ServiceName"' the ' should make powershell treat it as a string – justinf Aug 1 '12 at 16:07

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.