Login | |
|
 |
RE: How To: Parameter Passing to an external VBS script - 8/12/2008 7:39:38 AM
|
|
 |
|
| |
Fredledingue
Posts: 383
Score: 0
Joined: 5/9/2005
From:
Status: offline
|
To my experience you can pass only one argument to a vbscript launched that way. If the example above doesn't work, just split the argument: Arg = Split(WScript.Arguments.Item(0), " ") TimeToWait = Arg(0) val1 = Arg(1) val2 = Arg(2)
_____________________________
Fred
|
|
| |
|
|
|
|
|