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!