explorer - Batch file I wrote will not close automatically or on EXIT -
I created this batch file to close the explorer before launching worms, because for some reason my color is messy If I do not, I do not. The batch file works fine except that it does not stop when it ends, what did I do?
@echo off echo Closing Explorer and Works Task Kil / F / IM Explorer XE "C: \ game \ Worms Varged Armegaden - New Edition \\" Echo the key to resume any hit searcher! I have tried to use programs to call programs and when I use start "C: Windows Explorer"
This just opens a new command window and the titlebar explorer. Exe says, but my taskbar and everything has still gone.
start
is as fast as possible:
C: \ & gt; start over /? Start a separate window to run a specified program or command START ["title"] [/ Dpath] [/ I] [/ MIN] [/ MAX] [/ Save | / SHARED] [/ | / General | / High | / Real Time | / Indefinable / BELOWNORMAL] [Command / Program] [Parameter] The title "Title" displayed in the window title bar ...
As you can see here, The first argument can be a title It seems that the meaning of quote is here, which can be a title, but not always.
Anyways, instead, try it:
Start "Dummy" "Explorer Exe"
Note that you By specifying the full path of Explorer.XA can be avoided like this:
start c: \ windows explorer exe
(remembered quotation marks Note, keep quotas back, and this is a title again).
As I said, niggardly.
Comments
Post a Comment