Call perl script from vbscript

rajeshkumar created the topic: Call perl script from vbscript

Call perl script from vbscript

Set oShell = CreateObject("WScript.Shell")
sProgDir = "C:\Program Files\My Programs\perl\"
sArgs = "-i"
sExec = """" & sProgDir & "myperl.pl" & """"
sCmd = sExec & " " & sArgs
oShell.Run(sCmd)

Regards,
Rajesh Kumar
Twitt me @ twitter.com/RajeshKumarIn

Tagged :

Call batch script from vbscript

rajeshkumar created the topic: call batch script from vbscript

Call batch script from vbscript

dim shell
set shell=createobject("wscript.shell")
shell.run "INSTALL.bat"
set shell=nothing

Regards,
Rajesh Kumar
Twitt me @ twitter.com/RajeshKumarIn

Tagged :