Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
569 views
in Technique[技术] by (71.8m points)

windows 7 - How to use the start command in a batch file?

I have a batch file that starts an app with a lot of command-line parameters:

"C:Program Files (x86)Common FilesMicrosoft SharedDevServer11.0WebDev.WebServer40.exe" /port:1672 /path:"C:Code.NetMy AppIteration 6REL_6.8.806_PerfEnhanceVFusionCodeCC.FusionCC.Fusion.Services" /vpath:"/FusionServices"

The problem is that when I run the batch file, the DOS window stays up until the command completes and I would like it to go away. So I tried using the start command, but placing it in front, like this:

start "C:Program Files (x86)Common FilesMicrosoft SharedDevServer11.0WebDev.WebServer40.exe" /port:1672 /path:"C:Code.NetMy AppIteration 6REL_6.8.806_PerfEnhanceVFusionCodeCC.FusionCC.Fusion.Services" /vpath:"/FusionServices"

But I get an error stating that Invalid switch - "/port:1672"

I have also tried escaping the double quotes, but I was not successful.

How do I fix that?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

An extra pair of rabbits' ears should do the trick.

start "" "C:Program...

START regards the first quoted parameter as the window-title, unless it's the only parameter - and any switches up until the executable name are regarded as START switches.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...