• Dave,

    cscript //H:Cscript will make cscript the default script engine. Windows Script Host (WSH) is the program that runs scripts (VB scripts or javascripts) on Windows operating systems. WSH has two script engines. The default is the wscript engine and the alternate is the cscript engine. The main difference is that the wscript engine will send all of the text from a VB script WScript.Echo command to a dialog box that must be acknowledged by pressing an "OK" button while the cscript engine sends this text to the standard command line output in a cmd window (a.k.a DOS window). Setting the default engine to cscript will allow this VBScript to run without any user input.