The Count method returns a Long value which is the number of items in the collection.
For intI = 0
To WScript.Arguments.Count - 1
WScript.Echo
"Argument",intI,"is",WScript.Arguments(intI)
NextArgument 0 is
abc
Argument 1 is defThis VBScript code uses the Count method to set up a loop over the list of arguments passed to the current script. The output shown would be observed if the script were invoked with two command-line arguments: "abc" and "def".