VoiceGuide IVR Software Main Page
Jump to content

Start Vg 3 Minutes After Windows Start Up

Recommended Posts

First off we'd like to note that VoiceGuide v7 will automatically start the Dialogic drivers, and will automatically wait with Dialogic configuration until after the Dialogic service has fully completed starting up.

 

If using the old v6 of VoiceGuide then, as described in the post you linked to, use the SLEEP program from microsoft (or equivalent) to add some delay to the batch file before it starts VoiceGuide.

Share this post


Link to post

I found a solutionfor how to delay starting VG after start up. For those who are interested let me share it:

 

Option Explicit

Dim objShell

Set objShell = CreateObject("WScript.Shell")

WScript.Sleep 120000 '=2 minutes 1000 milliseconds =1 sec

objShell.exec "C:\Program Files\VoiceGuide\VgMulti.exe"

Set objShell = Nothing

WScript.Quit

 

 

Place the above script in a text file with .vbs extension and put it in the start up folder.

When you first test it, it will be blocked as a suspicios script. You need to approve it.

After restarting the PC, vg will start in 2 minutes.

 

Does anyone know how to minimize VG window when all the lines are "waiting for call..." and maximize/activate it while there is at least one call in progress?

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
×