VoiceGuide IVR Software Main Page
Jump to content

how to run executable file from VBS?

Recommended Posts

Hi,

 

we have problem with run exe file in RUN module.

How to write VBS to start exe file with parameters?

 

Share this post


Link to post

What is the problem that you are encountering when trying to use the Run Program module?

In a Run VBScript module you can use the approach below:

Dim objShell
Set objShell = WScript.CreateObject( "WScript.Shell" )
objShell.Run("c:\mydir\myprogram.exe")
Set objShell = Nothing

 

Share this post


Link to post

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×