I ran a search here but did not get an answer.
Does anyone know how to run a simple batch file as an unseen process.
echo off
erase c:junk.txt
Not minimized. Not on the Task Bar.
I can put it into the registry to run at start up. That is no problem. But I cannot hide the DOS Window and/or task bar icon.
sekirt
________________________________________________________________________________________
well u didnt search very well i answered you question with the near exact same title to some krundll guy.
the process take 3 files. one launch.bat one invis.vbs and one (your program)
in launch.bat(this files runs your program silently) put in…
wscript.exe “C:yourpathinvis.vbs” “your file.bat”
in invis.vbs put…
CreateObject(“Wscript.Shell”).Run “””” & WScript.Arguments(0) & “”””, 0, False
and finaly in your file put whatever u want…
echo off
erase c:junk.txt
well your done just open up launch.bat