home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / MISC / NETWORK / TIMESYNC.ZIP / TIMESYNC.DOC next >
Encoding:
Text File  |  1992-01-02  |  2.2 KB  |  68 lines

  1.  
  2.                                 TIMESYNC.EXE                  4/13/1989
  3.                                 ============
  4.  
  5. * What is it for?
  6.  
  7.         To solve time inconsistencies between netstation and 
  8.         3S40x servers.
  9.  
  10.  
  11. * How does it work?
  12.  
  13.         This is a terminate-stay-resident program which 
  14.         synchronizes DOS time by the real time clock setting.  It 
  15.         chains itself with the system timer interrupt INT 1Ch and 
  16.         maintains a counter of its own.  For every timer tick, it 
  17.         decrements the count by one.  When it hits zero, it 
  18.         updates the DOS time by reading from the real time clock 
  19.         and then reloads the preset count.  The default setting 
  20.         for synchronization is 15 minutes.  This default setting 
  21.         can be modified by using the option switches available.
  22.  
  23.  
  24. * Available command switches:
  25.  
  26.         /H=hh   to set sync period in hours, where hh = 1 ... 65535.
  27.         /M=mm   to set sync period in minutes, where mm = 1 ... 65535.
  28.         /?      to prompt user about program usage.
  29.  
  30.  
  31. * How do you install it?
  32.  
  33.         1) Establish a console connection with the 3S40x and copy 
  34.            TIMESYNC.EXE to the root of the C: drive.
  35.  
  36.         2) Edit your AUTOEXEC.BAT file to include TIMESYNC just 
  37.            before the call to 3plus_on.bat.
  38.  
  39.         For example, suppose the old AUTOEXEC.BAT looks like 
  40.         this: 
  41.  
  42.                     echo 3+ Server Boot Up batch file - version 3.1
  43.                     echo ~   3DOS V3.21 > LCD:
  44.                     3switch
  45.                     if errorlevel 17 goto done
  46.                     \3plus\3config\3plus_on.bat
  47.                    :done
  48.                     command
  49.  
  50.  
  51.         After the modification, the new AUTOEXEC.BAT will look 
  52.         like this:
  53.  
  54.                     echo 3+ Server Boot Up batch file - version 3.1
  55.                     echo ~   3DOS V3.21 > LCD:
  56.                     3switch
  57.                     if errorlevel 17 goto done
  58.                     TIMESYNC
  59.                     \3plus\3config\3plus_on.bat
  60.                    :done
  61.                     command
  62.  
  63.         3) Reboot your server in operating mode.
  64.  
  65.  
  66.  
  67.  
  68.