Nov 17, 2002 #1 pankajv Programmer Joined Jan 30, 2002 Messages 178 Location 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 Joined Feb 23, 2002 Messages 211 Location 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