VBS to EXE is a command line tool for script conversion. It can compile and convert VBScript files into executable EXE files. The created program executes the VBScript-code from memory using Ms-ScriptControl.
It hides the source of your Script-file (direct script execution is also possible). You can use following parameter for using this converter:
-h — [print help]
-t — [execute the infile]
-v — [print version]
Command line usage example:
vbstoexe script.vbs script.exe
(This call converts script.vbs to script.exe)
vbstoexe -t script.vbs
(This call executes script.vbs via Script-Control)