Nov 17, 2002 #1 pankajv Programmer Jan 30, 2002 178 IN I have to call an exe with parameters in the VBScript, How do i do that???
Nov 17, 2002 #2 sfriday IS-IT--Management Feb 23, 2002 211 DE dim wsh Set wsh = Wscript.CreateObject("Wscript.Shell" wsh.run "nameofexe.exe param1 param2",,true The true waits for the exit to run before returning to the vbscript. Regards Steve Friday Upvote 0 Downvote
dim wsh Set wsh = Wscript.CreateObject("Wscript.Shell" wsh.run "nameofexe.exe param1 param2",,true The true waits for the exit to run before returning to the vbscript. Regards Steve Friday