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

Set Time and Date

Status
Not open for further replies.

PeoplesBKTech

Technical User
Dec 27, 2006
24
US
I forgot can some one give me the format to program the time and date in LD 2

 
I need to know how to change the Time and date in Element Manager it is currently overiding PBX commands this is why I cant do it in the PBX...
 
If you have Rel 5.x you will need the level 2 password, which might explain why it is being overridden.
 
THANKS FOR THE HELP I NEEDED THE ADMIN 2 PASSWORD!!! GOT IT AND CHANGED THE TIME I GOT NERVOUS AND FORGOT EVERYTHING THE PRESIDENT ON THE COMPANY WAS RIGHT ON MY BACK LOOKING AT ME, RAN TO PBX ROOM EMAILED YOU GUYS GOT THE INFO RAN BACK NOW I AM THE MAN!!!!!!
 
if that's all it took, congrats.. your certified

if your using procomm, here's a short loging script that stops for your pwd then syncs the time with your network time.. very cool
Code:
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 20
   transmit "****^M"
   pause 1
 transmit "john^M" ;logs you out if your logged in
 pause 1
   transmit "logi username^M" ;add your login name here
  
  ;script stops while you enter your password
  
   
   waitfor ">" forever
   
   transmit "ld 2^M"
   waitfor "."
   transmit "TTAD^M"
   waitfor "."
   transmit sSend
   transmit "^M"
   waitfor "."
   mspause 20
   transmit "TTAD^M"
   waitfor "."
   mspause 20
   transmit "****^M"
   
   
   
   endproc

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

Part and Inventory Search

Sponsor

Back
Top