i wrote run.bat which consists of:
cscript //nologo %1
i call arguments with this batch file which consists of:
Option Explicit
Dim strArgument
For Each strArgument in Wscript.Arguments
Wscript.Echo strArgument
Next
but it doesn't return anything.
if i call arguments.vbs from the command line in a normal fashion:
cscript //nologo arguments.vbs
it works.
any hints?
cscript //nologo %1
i call arguments with this batch file which consists of:
Option Explicit
Dim strArgument
For Each strArgument in Wscript.Arguments
Wscript.Echo strArgument
Next
but it doesn't return anything.
if i call arguments.vbs from the command line in a normal fashion:
cscript //nologo arguments.vbs
it works.
any hints?