For the moment my batch file look like this:
myprogram.exe param1
The program start but the Dos Windows still open... how can I close it?
|
For the moment my batch file look like this:
The program start but the Dos Windows still open... how can I close it?
| ||||
|
feedback
|
|
You can use the exit keyword. Here is an example from one of my batch file:
| |||||
feedback
|
|
Look at the START command, you can do this:
For instance, this batch-file will wait until notepad exits:
However, this won't:
| |||
|
feedback
|
|
From my own question:
works if you start the program from an existing DOS session. If not, call a vb script
The Windows Script Host Run() method takes:
Here is invis.vbs:
| |||||
feedback
|
|
You should try this. It starts the program with no window. It actually flashes up for a second but goes away fairly quickly.
| |||
|
feedback
|