I would like to know how to display variable values in command prompt.
Following is the vbs code:
For i=0 To 10
// I should display this variable value in command prompt
Next
If I write Shell.run(a.bat) inside loop, this will open command prompt 10 times.
But i want all 10 values to be displayed in single command prompt.