All Elements
ELEMENT: <package>
The
<package>
tag allows more than one job to be defined within one .wsf file. The use of the
<package>
tag is optional if the .wsf file has only one job. Each .wsf file contains at most one
<package>
tag.
Syntax:
<package> . . . </package>
The following sample code illustrates the use of this tag.
<?XML version="1.0" ?>
<!-- Filename: demo.wsf-->
<package>
<job id="JobOne">
<script type="text/vbscript">
WScript.Echo "This is job one."
</script>
</job>
<job id="JobTwo">
<script type="text/vbscript">
WScript.Echo "This is job two."
</script>
</job>
<job id="JobThree">
<script type="text/vbscript">
WScript.Echo "This is job three."
</script>
</job>
</package>