Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Help with dialname command

Status
Not open for further replies.

Pandab2002

IS-IT--Management
Apr 16, 2003
47
US
Hello, I am trying to write a simple script that records or captures the entry name on my dialing directory list. I dial in to over 200 Nortel option 11 PBX's and I'd like to be able to use the entry name to automaticlly create capture file names. Can anyone assist?

Thanks...
 
If I understood your question correctly, this script should do the trick:

proc main
string sCapFile

sCapFile = $DIALCONNECT
strcat sCapFile ".cap"
set capture file sCapFile
capture on
endproc

You'll need to add some more to this script to turn the capture file off when you are done. Just attach this script to each entry in your Connection Directory and you should be good to go.

aspect@aspectscripting.com
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top