VoiceGuide IVR Software Main Page
Jump to content

Run Progam Module Behaviour

Recommended Posts

I have two questions:

 

1. I would like to use

 

command /k echo $RV_ENTEREDNUMBER or

command /k echo $RV_ENTEREDNUMBER >>con: or

cmd /k echo $RV_ENTEREDNUMBER >>con: or ...

 

 

(in Windows XP) to monitor phone keypad entries in a run command module but without success.

Is there a way of doing this?

 

2. If a get numbers module has no VBScript then the sound files are heard, conversely if there is a VBScript the sound files do not play - is it possible to do both and do event processing?

Share this post


Link to post

Just run the command in a Run program module, or run the command from within VBScript, using VBScript’s command line executing functions...

 

2. If a get numbers module has no VBScript then the sound files are heard, conversely if there is a VBScript the sound files do not play - is it possible to do both and do event processing?

Which sound files are you referring to? Please supply a demo script demonstrating what you want to show.

Share this post


Link to post

attached is the "Run program module" screen shot of one of the series of scripts

tested:

 

command /k echo $RV_ENTEREDNUMBER or

command /k echo $RV_ENTEREDNUMBER >>con: or

cmd /k echo $RV_ENTEREDNUMBER >>con: or ...

 

the expected functionality has not been achieved, namely:

 

the "Run progam module" should

 

1. "Wait until program and sound file completes."

2. "/k"eep the "command/cmd" running until "exit" is typed

and

3. "echo ..." some text on the command console

 

This does not happen, the module seems to be ignored.

Is there an activation or initialization sequence needed to invoke the processing of "Run program" modules? Can the above be done in a "Run program" module?

 

-----------------------------------------------------------------------------

re: question 2. "If a 'get numbers' module has no VBScript then ..."

 

thank you for responding - however,

the problem was due to the path "on {$RV_ENTEREDNUMBER } goto ..."

which circumvents the complete processing of a 'get numbers' module

post-2-1094113074.jpg

Share this post


Link to post

in windoz XP PRO

 

Run Program modules need command.com

to have a fully qualified path

ie.

"c:\windows\system32\command.com" will run

"command.com" will not

when specified as the program to run in a Run Program module.

 

in any case "cmd" is sufficient to invoke the XP command processor

 

note: also "cmd /c move ..." functions but "command /c move ..." does not

the XP design interface intentionally cripples the legacy support

and compatibity of previous OS conventions

post-2-1094190525.jpg

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
×