Windows Script Host
<?job?> Element
Specifies attributes for error handling.
<?job error="flag" debug="flag" ?>
Arguments
Remarks
Although most Windows Script files normally run silently during production, you might find it useful to be notified of errors in the Windows Script (.wsf) file as you are developing it.
Example
The following example incorporates two jobs into one .wsf file that uses two different scripting languages.
<package>
<job id="DoneInVBS">
<?job debug="true"?>
<script language="VBScript">
WScript.Echo "This is VBScript"
</script>
</job>
<job id="DoneInJS">
<?job debug="true"?>
<script language="JScript">
WScript.Echo("This is JScript");
</script>
</job>
</package>
See Also