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

Time Change on Option 11c 1

Status
Not open for further replies.

giantman

IS-IT--Management
Mar 17, 2004
48
US
Need to change the system time that is displayed on the phones. The remote office does not have a working console to change the time manually. Is there an overlay that can be used to change the time ? System is an Option 11c.

Many thanks.
 
Use the command TTAD in LD 2 to print the current time and date (And to give you the format for changing it with STAD)

Arch
 
if your using pcplus here is a script that will sync the switch to the clock on your pc

proc main
integer iDay, iMonth, iYear, iMin, iHour, iSec
string sSend

ltimeints $LTIME iYear iMonth iDay iHour iMin iSec

strfmt sSend "STAD %02d %02d %d %02d %02d %02d" iDay iMonth iYear iHour iMin iSec
set txpace 30
transmit "****^M"
waitfor ">"
transmit "ld 2^M"
waitfor "."
transmit "TTAD^M"
waitfor "."
transmit sSend
transmit "^M"
waitfor "."
pause 2
transmit "TTAD^M"
waitfor "."
pause 2
transmit "****^M"

set txpace 0

Endproc

john poole
bellsouth business
columbia,sc
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top