Escape Characters in Windows Command Line

Escape Characters in Windows’ CMD.EXE doesn't entirely work for me. I wanted to embed or escape quote characters in a command line, to give to the binPath parameter of sc.exe to create a windows service. But this contribution from John McNelly in the comments did give the solution:

John McNelly •  Jun 4, 2009 @1:10 pm

You can also use ^ as a line continuation character for readability.
To escape an embedded ” use a backslash, useful with paths within “c:\Program Files” :

sc.exe create Foo ^
binPath= "\"C:\Program Files\foo.exe\" \"C:\Program Files\foo.ini\"" ^
displayName= "Hello, world"

Thanks John.

One thought on “Escape Characters in Windows Command Line”

  1. C:\Windows\system32>sc.exe create teagent binpath= “\”C:\Program Files\Tripwire\TE\Agent\bin\wrapper.exe\” -s \”C:\Program Files\Tripwire\TE\Agent\bin\agent.conf\”” DisplayName= “Tripwire Enterprise Agent”
    [SC] CreateService SUCCESS

Comments are closed.

Escape Characters in Windows Command Lin…

by Chris F Carroll read it in <1 min
1