Run Batch File Invisible/Stealth

January 17th, 2007

Found this tidbit online while working on a simple project. You can find Nathan’s posting here.

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:\yourpath\invis.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

Obviously it works on in Windows OS but that’s not the end of the world…

Jin out.

3 Responses to “Run Batch File Invisible/Stealth”

  1. fdskljdfkj Says:

    Dont work on vista

  2. Spike Says:

    Can this be made and ran without having to leave flash-drive or other storage device behind, or have it seent to another location(e-mail, server, computer)?
    Scenario
    (i.e. you send “file” to a friend that wants you to back up their computer on your private sever or your computer for them.)
    Is it possible to send them the file and they start it then it sends the information to the destination via internet?

  3. Dude Says:

    Spike,
    The user in question would firat have to be Admin level to see the other user’s folder, and then the file would have to use explicit language to ftp the data to.

Leave a Reply