tl  tr
  Home | Tutorials | Articles | Videos | Products | Tools | Search
Interviews | Open Source | Tag Cloud | Follow Us | Bookmark | Contact   
 VB Script > Shell > Named Arguments

Named Arguments 

This example show accessing named command line arguments.

File Name  :  
source/VBS/shell/named_args.vbs 
Author  :  Sudhakar KV
Email  :  [email protected]

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



 
  


  
bl  br