|
|
Question : parameters with values in batch file
|
|
Good day!
i want to call vbs file in batch file and the parameters have values. Is this the right syntax for argument name with values.
cscript allocate2.vbs username:FRS_FRR password:FRS_FRR date:20041231 FRRDSN:FRS_FRR FRRDB:NCRBMOD
|
Answer : parameters with values in batch file
|
|
the : symbol on a command line has special meaning. I suggest you try quoting the parameters:
cscript allocate2.vbs "username:FRS_FRR" "password:FRS_FRR" "date:20041231" "FRRDSN:FRS_FRR FRRDB:NCRBMOD"
|
|
|
|