|
Named Arguments
This example show accessing named command line arguments.
cscript named_args.vbs /name:bethecoder /version:1.0 /debug:true
It gives the following output,
Number of named arguments : 3
Arg name : name | Value : bethecoder
Arg name : version | Value : 1.0
Arg name : debug | Value : true
|
|