Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ezhov-da/1435cb97756a27bcc563f2309fb949fa to your computer and use it in GitHub Desktop.
Save ezhov-da/1435cb97756a27bcc563f2309fb949fa to your computer and use it in GitHub Desktop.
vbs чтение аргументов командной строки.vbs
'http://forum.ru-board.com/topic.cgi?forum=33&topic=1601
Set objArgs = WScript.Arguments
For I = 0 to objArgs.Count - 1
WScript.Echo objArgs(I)
Next
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment