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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Windows 7 terminal emulation 2

Status
Not open for further replies.

ringbacktone

Technical User
Jan 9, 2009
107
0
0
US
After using XP on my laptop forever to allow direct connect to OPT switches and Mitel switches I finally had to upgrade to WIN 7. There is no Hyper terminal and I do not think Procom will run on 7.I would like to ask the forum what program
or programs are available that work well with Windows 7.
Thanks in advance, RBT
 
We are currently using Secure CRT on our Windows 7 machines.
 
My Corporate Machine came with Hyper Terminal as well as Secure CRT.
 
I use PuTTY - works on COM ports, telnet, SSH, RLogin, etc...

Best of all it's free - my go to terminal emulator. Works great.
 
Thanks for the help.I now have procom as well as Hyper term.
RBT
 
I would suggest PuTTY, or if you want the ability to run scripts, try ZOC!
 
Hello Jamie2

Have you been able to run many scripts with ZOC?. Would you be able to send or post me a few of them please to try out. I'm trying to see if I can use them in the same way that I have some set for Procomm Plus.

All the best

Firebird Scrambler
Meridian 1 / Succession and BCM / Norstar Programmer in the UK

If it's working, then leave it alone!.
 
Not sure why I did that... I will post it here too for others!

I have used ZOC for many of the same script functions as Procomm. In my opinion is it as good as Procomm, NO! I was more comfortable with programming with Aspect than I am with Zoc's programming language, which is a flavor of REXX. There is a REXX forum on Tek-Tips too! One of the major downsides to ZOC is that I haven't figured out how to make a dialog box with radio buttons... However, the basic scripting of it works good, but my scripts are not close as elaborate as yours!

Here is a basic script for adding NPA data!

Code:
/********* SCRIPT USED TO ADD NPA's IN THE AC1 and AC2 TABLE **************/
/***** LOOP - Used to enter NPA 360 on AC1 *****/

	CALL ZocSend "****^M"
	CALL ZocSend "ld 90^M"

	CALL ZocWait "REQ"
	CALL ZocSend "new^M"

	CALL ZocWait "CUST"
	CALL ZocSend "0^M"

	CALL ZocWait "FEAT"
	CALL ZocSend "net^M"

	CALL ZocWait "TRAN"
	CALL ZocSend "ac1^M"

	CALL ZocWait "TYPE"
	CALL ZocSend "npa^M"

	CALL ZocWait "NPA"
	CALL ZOCdelay .25
	CALL ZocSend "360^M"

	CALL ZocWait "RLI"
	CALL ZocSend "0^M"

	CALL ZocWait "SDRR"
	CALL ZocSend "deny^M"

	CALL ZocWait "DENY"
	CALL ZocSend "976^M"

	CALL ZocWait "DENY"
	CALL ZocSend "^M"

	CALL ZocWait "SDRR"
	CALL ZocSend "^M"

	CALL ZocWait "ITEI"
	CALL ZocSend "^M"

	CALL ZocWait "NPA"
	CALL ZocSend "^M^M"

	CALL ZocWait "REQ"
	/* SAY "  Finished - ADDing NPA 360 to AC1. Will Continue to Add 1200 to 1359 in AC1" */
        CALL ZocNotify "Finished - ADDing NPA 360 to AC1. Will Continue to Add 1200 to 1359 in AC1 -- PLEASE WAIT!!!"
	CALL ZOCdelay 2


/***** LOOP - Used to enter NPA 1200 thru 1999 on AC1 *****/

	CALL ZocSend "****^M"
	CALL ZocSend "ld 90^M"

	CALL ZocWait "REQ"
	CALL ZocSend "new^M"

	CALL ZocWait "CUST"
	CALL ZocSend "0^M"

	CALL ZocWait "FEAT"
	CALL ZocSend "net^M"

	CALL ZocWait "TRAN"
	CALL ZocSend "ac1^M"

	CALL ZocWait "TYPE"
	CALL ZocSend "npa^M"

     /* LOOP - Used to enter NPA 1200 thru 1999 */

	DO npa1=1200 TO 1999

	CALL ZocWait "NPA"
	CALL ZOCdelay .25
	CALL ZocSend npa1
	CALL ZocSend "^M"

	CALL ZocWait "RLI"
	CALL ZocSend "0^M"

	CALL ZocWait "SDRR"
	CALL ZocSend "deny^M"

	CALL ZocWait "DENY"
	CALL ZocSend "976^M"

	CALL ZocWait "DENY"
	CALL ZocSend "^M"

	CALL ZocWait "SDRR"
	CALL ZocSend "^M"

	CALL ZocWait "ITEI"
	CALL ZocSend "^M"

     END

	CALL ZocWait "NPA"
	CALL ZocSend "^M^M"

	CALL ZocWait "REQ"
	/* SAY "  Finished - ADDing NPA's 1200 thru 1999, Will now add 200 to 999 in ac2" */
	CALL ZocNotify "Finished - ADDing NPA's 1200 thru 1999, Will now add 200 to 999 in ac2 -- PLEASE WAIT!!!" 
	CALL ZOCdelay 4

EXIT
/***** LOOP - Used to enter NPA 200 thru 999 on AC2 *****/

	CALL ZocSend "****^M"
	CALL ZocSend "ld 90^M"

	CALL ZocWait "REQ"
	CALL ZocSend "new^M"

	CALL ZocWait "CUST"
	CALL ZocSend "0^M"

	CALL ZocWait "FEAT"
	CALL ZocSend "net^M"

	CALL ZocWait "TRAN"
	CALL ZocSend "ac2^M"

	CALL ZocWait "TYPE"
	CALL ZocSend "npa^M"

/* LOOP - Used to enter NPA 201 thru 999 */

	DO npa1=200 TO 999

	CALL ZocWait "NPA"
	CALL ZOCdelay .5
	CALL ZocSend npa1
	CALL ZocSend "^M"

	CALL ZocWait "RLI"
	CALL ZocSend "4^M"

	CALL ZocWait "SDRR"
	CALL ZocSend "deny^M"

	CALL ZocWait "DENY"
	CALL ZocSend "976^M"

	CALL ZocWait "DENY"
	CALL ZocSend "^M"

	CALL ZocWait "SDRR"
	CALL ZocSend "^M"

	CALL ZocWait "ITEI"
	CALL ZocSend "^M"

     END
	CALL ZocWait "NPA"
	CALL ZocSend "^M^M"

	CALL ZocWait "REQ"
	SAY " Finished - ADDing NPA's 200 thru 999 in the AC2 Table"
	CALL ZOCdelay 4
	CALL ZocSend "****^M"
	CALL ZocBeep 2
	CALL ZOCdelay .5
	/* CALL ZocMsgBox "THE SCRIPT HAS COMPLETED!" */
	CALL ZocNotify "Finished - ADDing 200 to 999 in the AC2 Table -- PLEASE WAIT!!!"
	CALL ZOCdelay 2
	CALL ZocNotify "THE SCRIPT HAS COMPLETED!"
EXIT
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top