How to do batch code hider

Asked By 70 points N/A Posted on -
qa-featured

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

SHARE
Answered By 5 points N/A #136973

How to do batch code hider

qa-featured

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.

Scripting Help

I hope you will find this information useful.

Randolph

Related Questions