[tips0003.vbs] Option Explicit If WScript.Arguments.Named.Exists("A") Then WScript.Echo "/A パラメータの値は" & _ WScript.Arguments.Named("A") & "です。" End If If WScript.Arguments.Unnamed.Count > 0 Then WScript.Echo "オプション指定なし: " & WScript.Arguments.Unnamed(0) End If
C:\> cscript //NoLogo tips0003.vbs arg1 /A:arg2 /A パラメータの値はarg2です。 オプション指定なし: arg1