I know this is the vbscript group, but I couldn't find a batch group
and I figured most of you in here know batch scripting, so here goes.
Does anyone kow of a way to CALL 1 bacth file from another but not have
the 2nd one show a window. Basically using a quiet mode. Is here such a
thing as call file.bat /q or another method?

Re: Batch file Call, quiet mode?? by Jerold

Jerold
Fri Aug 19 11:23:55 CDT 2005

On 19 Aug 2005 07:40:10 -0700, rwh@rodharrison.com wrote:

>I know this is the vbscript group, but I couldn't find a batch group
>and I figured most of you in here know batch scripting, so here goes.
>Does anyone kow of a way to CALL 1 bacth file from another but not have
>the 2nd one show a window. Basically using a quiet mode. Is here such a
>thing as call file.bat /q or another method?



See tip 9242 » How can I hide a batch window?
in the 'Tips & Tricks' at http://www.jsifaq.com


HideBatch BatchFile [Param1 Param2 ... ParamN]

or

call HideBatch BatchFile [Param1 Param2 ... ParamN]



Re: Batch file Call, quiet mode?? by rwh

rwh
Fri Aug 19 12:45:32 CDT 2005

Thanks that works great.