請問如何將這個vbs中的'inp'變量傳遞給我的批處理命名爲job.bat?實際上,在執行echo(echo%2)時, job.bat,我注意到,INP不能正常通過。prompt命令INP意見,而不是從VBS檢索到的值。感謝從參數中傳遞變量從vbscript到批處理文件
For Each listElement In xmlDoc.selectNodes("document/Lists/list")
msgbox "toto"
inp=listElement.selectSingleNode("entry").text
out= listElement.selectSingleNode("output").text
jeton= listElement.selectSingleNode("token").text
dim shell
set shell=createobject("wscript.shell")
shell.run "job.bat ""a file"" **inp** "
set shell=nothing
Next
謝謝。它解決了! – tamo