VB Script does not recognize the actual parameter
问题 I've two VB Scripts. Say First.vbs and Second.vbs . Frist.vbs calls Second.vbs each time some action/event happens. I am trying to send two parameters from Frist.vbs to Second.vbs using the following code: Contents of First.vbs : Set objShell = Wscript.CreateObject("WScript.Shell") param1 = "Welcome" param2 = "Gokul Nath" objShell.Run "Second.vbs" & " " & param1 & " " & param2 Set objShell = Nothing Contents of Second.vbs : param1= Wscript.Arguments.Item(0) param2 = Wscript.Arguments.Item(1)