I am learning how to write batch files for Windows 7 using the VBScript like native scripting language.
I suppose I am not using the Windows Scripting Host or the Power Shell. I am using the simple old style VBScript like syntax.
I don't understand how to shift arguments when there are more than 9 arguments (or 10 including the name of the batch file) passed to the batch file.
Could you please teach me that?
Let us assume that you called my batch file with the following arguments:
C:\>call my.bat "one" "two" "three" "four"
"five" "six" "seven" "eight" "nine" "ten" "eleven"
How would you access the arguments ten
and eleven
from within my.bat
?