How to do batch code hider

Dear Friends,
I need to know how to do batch code hider, that will run the batch file without showing the command window.
Is it possible to do the same, please guide me.
Thanks, Adam Johnson

Dear Friends,
I need to know how to do batch code hider, that will run the batch file without showing the command window.
Is it possible to do the same, please guide me.
Thanks, Adam Johnson
Hello Adam
In order for you to hide the command window, you could use a code like:
CreateObject("Wscript.Shell").Run "NAME_ME.bat",0,True
Instead of "NAME_ME" you place the name of your .bat file
Also you have
Property: CreateNoWindow that runs a command line without flashing the console window
Property: WindowStyle.Hidden which will set the windows as hidden
Also access the link I have provided you with if you want more information regarding your issue.
I hope you will find this information useful.
Randolph