Re: Batch File Problem - Batch File Enclosed




"Tony P." <noone@xxxxxxxxxxxxxxxxx> wrote in message
news:ueaHJ49GIHA.484@xxxxxxxxxxxxxxxxxxxxxxx
Pegasus (MVP) wrote:
"Tony P." <noone@xxxxxxxxxxxxxxxxx> wrote in message
news:Osr25e6GIHA.4592@xxxxxxxxxxxxxxxxxxxxxxx
Hello,

I have added a batch file to my Startup folder to execute whenever
Windows boots. The batch file works ok but it leaves a blank command
(DOS)window on the screen. The only thing in the command window is a
flashing cursor. I would like close this window using the batch file
after the file executes. I have tried adding an exit command to the
batch file but it doesn't seem to work. When the command window
appears on the scrren, the only way to remove it is to click the X
in the upper right corner. I can't enter any commands in the command
window. Is there a way to close the command window in the batch file?

--
Thanks,
Tony
For replies, please correct my email address.


Let's have a look at your batch file.

This is the batch file in question. The last line of the file has the exit
command but the window stays open.

@echo off
:again
ping www.google.com |find/i"bytes=" > nul && goto Connected
ping localhost -n 60 > nul
goto again

:Connected
"c:\Program Files\Mailwasher\mailwasher.exe"
exit



Your problem is not the batch file or the process in which it runs
but mailwasher.exe itself: It fails to return control to the batch
file until you close it manually. You can easily test this yourself!

To get around the problem, use this code:

:Connected
start "Mail Washer" "c:\Program Files\Mailwasher\mailwasher.exe"

There is no need for the "exit" command - the command
window will close automatically after executing the last
line.


.



Relevant Pages

  • Re: batch question
    ... window at great speed, without being executed. ... all I want is for the command to work inside a command prompt window. ... Your original batch file had two lines. ... you fell into a well-known trap: you are not executing ping.exe ...
    (microsoft.public.windowsxp.general)
  • Re: Perfmon and batch file
    ... > event viewer and run command file. ... > but no execute the cmd file or execute it but not execute the ... You are probably making some assumptions in your batch file ... @echo off ...
    (microsoft.public.windows.server.general)
  • Re: Batch File Problem - Batch File Enclosed
    ... I have added a batch file to my Startup folder to execute whenever ... The batch file works ok but it leaves a blank command ... I would like close this window using the batch file ...
    (microsoft.public.windowsxp.general)
  • how to compile C:WINCE500PUBLICCOMMONOAKCSPX86DOSLOADCEPC
    ... Build instructions for loadcepc.exe ... a standard cmd.exe window. ... Execute the batch file setupenv.bat: ... command promt ...
    (microsoft.public.windowsce.platbuilder)
  • Build instructions for loadcepc.exe
    ... Build instructions for loadcepc.exe ... a standard cmd.exe window. ... Execute the batch file setupenv.bat: ... command promt ...
    (microsoft.public.windowsce.platbuilder)