Last active
January 7, 2020 18:32
-
-
Save rahuldottech/4251160705df4f70f6e483bc6458c741 to your computer and use it in GitHub Desktop.
invShell [Windows/VBS] - Run batch files, commands and executables invisibly
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
invShell v0.1 by rahuldottech | |
----------------------------- | |
License: | |
MIT license - https://github.com/rahuldottech/license | |
Usage: | |
invShell.vbs <command/script> <arguments> | |
Example: | |
invShell.vbs some-script.cmd "arg1" "arg2" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
For each ag in wscript.arguments | |
CMDLINE = CMDLINE & " " & ag | |
Next | |
CreateObject("Wscript.Shell").Run "" & mid(CMDLINE, 2) & "", 0, False |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment