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!

set time: hipath 4000

Status
Not open for further replies.

ARNOLD001

Technical User
Aug 29, 2001
53
0
0
Any one know how to set the time/date on the hipath 4000? Thanks
 
With the AMO DATE, you modify the time and the date of HiPath 4000.

Greetings
 
This is a PROCOMM script I wrote to set the time to your PC time. It will work on any 9006 or 4000 system. But in a 4000 system you should define a TIME SERVER for the system to access, and never need to worry about the time again.





PROC MAIN

set txpace 30


transmit "dis-date^M"

call myproc

waitfor "<"

endproc


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

ltimeints $LTIME iYear iMonth iDay iHour iMin iSec

strfmt sSend "cha-date:%02d,%02d,%02d,%02d,%02d,%02d;" iYear iMonth iDay iHour iMin iSec
set txpace 30
transmit "^M"
waitfor "<"
pause 2

transmit sSend
transmit "^M"
waitfor "<"
transmit "dis-date;^M"

endproc
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top