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

Synching time to network 3

Status
Not open for further replies.

Ward1

Technical User
Dec 22, 2005
19
US
How do I go about this. 4.0 succession software on a 61 with old hardware 2921 swaps every night. I have Call Pilot 5.0 and CCMS 6.0 tied into it
 
someone posted some time ago a procom script that would login to PBX and adjust time on a daily basis - that would be as close to a Network Time sync as you could get until you upgrade.
 
Look for Procomm "Script" files and you'll find it. I use it all the time when logging on to my systems. I have edited it to stat PRI's, list Error Counts, stat VM ports, and a couple more options. It sets the system time from my desktop, which is always updated by the NIST. Good luck.

DocVic
Dedicated to Nortel Products till the end.
Need help? Call Me Now!
 
This one is from jack on PBXInfo in 2008, for Procomm Plus.

Here's a straight forward one for a single site.
(Login first)
proc main
integer iDay, iMonth, iYear, iMin, iHour, iSec
string sSetTD
set txpace 75
transmit "****^M"
pause 3
transmit "LD 2^M"
pause 3
transmit "TTAD^M"
waitfor "."
pause 1
ltimeints $LTIME iYear iMonth iDay iHour iMin iSec
strfmt sSetTD "STAD %02d %02d %d %02d %02d %02d" iDay iMonth iYear iHour iMin iSec
mspause 250
transmit sSetTD
pause 2
transmit "^M"
waitfor "."
mspause 500
transmit "TTAD^M"
waitfor "."
mspause 250
waitfor "."
transmit "****^M"
endproc


DocVic
Dedicated to Nortel Products till the end.
Need help? Call Me Now!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top