可以使用以下命令將參數(shù)傳遞給wscript.exe:
wscript.exe /path/to/script.vbs arg1 arg2
其中,/path/to/script.vbs
是要執(zhí)行的VBScript腳本的路徑,arg1
和arg2
是要傳遞給腳本的參數(shù)。在VBScript腳本中,可以使用WScript.Arguments
對象來訪問這些參數(shù)。
以下是一個示例腳本,它接收兩個參數(shù)并在CMD中打印它們的值:
' script.vbs
' 獲取參數(shù)個數(shù)
argCount = WScript.Arguments.Count
' 檢查參數(shù)個數(shù)是否滿足要求
If argCount <> 2 Then
WScript.Echo "錯誤:需要提供兩個參數(shù)!"
WScript.Quit
End If
' 獲取參數(shù)值
arg1 = WScript.Arguments(0)
arg2 = WScript.Arguments(1)
' 打印參數(shù)值
WScript.Echo "第一個參數(shù):" & arg1
WScript.Echo "第二個參數(shù):" & arg2
在CMD中執(zhí)行以下命令來調(diào)用該腳本并傳遞參數(shù):
wscript.exe /path/to/script.vbs value1 value2
將/path/to/script.vbs
替換為實(shí)際的腳本路徑,value1
和value2
替換為實(shí)際的參數(shù)值。執(zhí)行后,腳本將打印參數(shù)值。