vote up 4 vote down star
1

This is a batch file in Windows.

Here is my .bat file

@echo off
copy "C:\Remoting.config-Training" "C:\Remoting.config"

"C:\ThirdParty.exe"

This works fine except the .bat file leaves the command window open the whole time the "ThirdParty" application is running.
I need the command window to close.

I would use the short-cut for the application but I must be able to run this copy command first (it actually changes which data base and server to use for the application).

The ThirdParty application does not allow the user to change the source of the db or the application server.

We're doing this to allow users to change from a test environment to the production environment.

flag

5 Answers

vote up 4 vote down check

Using start works for me:

@echo off copy "C:\Remoting.config-Training" "C:\Remoting.config"
start C:\ThirdParty.exe

EDIT: Ok, looking more closely, start seems to interpret the first parameter as the new window title if quoted. So, if you need to quote the path to your ThirdParty.exe you must supply a title string as well.

Examples:

:: Title not needed:
start C:\ThirdParty.exe

:: Title needed
start "Third Party App" "C:\Program Files\Vendor\ThirdParty.exe"
link|flag
Now the Thirdparty app doesn't start and my command window stays open. – GuinnessFan Feb 3 at 15:18
Yes, you're right. When I used this I did not quote the path to my application. Please have a look at my revised answer. – cg Feb 3 at 15:43
Thanks to Patrick Cuff for improving my answer. I'm still new to SO and did not realize until now that enough reputation would allow you to edit other people's posts... – cg Feb 3 at 18:05
vote up 3 vote down

Try this:

@echo off 
copy "C:\Remoting.config-Training" "C:\Remoting.config"
start C:\ThirdParty.exe
exit
link|flag
Don't use the quotes around C:\ThirdParty.exe and this will work perfectly. – Patrick Cuff Feb 3 at 17:34
Cool, thanks Patrick. – QAZ Feb 3 at 18:07
That worked perfectly for me as well, thanks. – sparks Jun 3 at 20:11
vote up 0 vote down

I haven't really found a good way to do that natively, so I just use a utility called hstart which does it for me. If there's a neater way to do it, that would be nice.

link|flag
vote up 0 vote down

Please use this one, the above does not work. I have tested in Window server 2003. @echo off copy "C:\Remoting.config-Training" "C:\Remoting.config" Start /I "" "C:\ThirdParty.exe" exit

link|flag
What error did you get indicating the 'above' does not work? Maybe it is because you are using Windows Server? – GuinnessFan Aug 11 at 13:02
vote up 0 vote down

Using start works fine, unless you are using a scripting language. Fortunately, there's a way out for Python - just use pythonw.exe instead of python.exe:

:: Title not needed:
start pythonw.exe application.py

In case you need quotes, do this:

:: Title needed
start "Great Python App" pythonw.exe "C:\Program Files\Vendor\App\application.py"
link|flag

Your Answer

Get an OpenID
or

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