home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 16 / 16.iso / t / t110 / 1.ddi / IADM < prev   
Encoding:
Text File  |  1987-08-08  |  4.5 KB  |  142 lines

  1. ;=======================================================;
  2. ; This is a macro command file for installing ADM on    ;
  3. ; user's hard disk drive(s). It assumes user have no    ;
  4. ; prior knowledge on how to set up an ADM system and    ;
  5. ; takes user step-by-step through the installation.    ;
  6. ;                            ;
  7. ; There are 2 possible ways to invoke this program    ;
  8. ; which is listed as 'IADM' in the directory:           ;
  9. ; (1) use B option in main menu of ADM and enter IADM    ;
  10. ; (2) type ADM IADM <ret> under DOS shell        ;
  11. ;                            ;
  12. ; Users may change some variable in lines marked ';**'  ;
  13. ; for particular needs(e.g. preset defect list, define    ;
  14. ; volume name for logical drive).            ;
  15. ;=======================================================;
  16. $if ! adm_vers                ;Executing ADM ?
  17.     $return                ;No, close this file
  18. $end
  19. ;
  20. $F1 = 03b00h                ;define <F1> key value
  21. $F2 = 03c00h                ;define <F2> key value
  22. $F4 = 03e00h                ;define <F4> key value
  23. $RET= 00dh                ;define <ret> key value
  24. $ESC= 01bh                ;define <Esc> key value
  25. ;
  26. $keyv = 0
  27. $if (ndrives/256) = 1
  28.     $keyv = 030h            ;only 1 hard drive connected
  29. $end
  30. $dowhile keyv = 0
  31.     $keyv=0ffh & msgkey("Enter drive #(0/1) to be installed...[0]: ")
  32.     $if keyv = 0dh
  33.     $keyv = 030h            ;default drive 0
  34.     $end
  35.     $if keyv <> 030h & keyv <> 031h
  36.     $keyv = 0            ;ignore invalid key
  37.     $end
  38. $end
  39. $if (ndrives & 0ffh) - 050h <> keyv
  40.     D                    ;drive option
  41.     $key chr(F1)            ;switch to next drive
  42.     $key chr(01c00h)            ;turn off Drive option sub-menu
  43. $end
  44. ;
  45. $if initflag = 0aa55h            ;is it preformated?
  46.     $fmt_key = msgkey("Would you like to preformat the drive...(Y/N)? ")
  47. $else                    ;if it is not preformated
  48.     $fmt_key = msgkey("The drive must preformat, proceed...(Y/N)? ")
  49.     $if (fmt_key & 05fh) <> 059h
  50.     $return             ;colse this file
  51.     $end
  52. $end
  53. $if (fmt_key & 05fh) = 059h        ;preformat Yes or No
  54.     $keyv = msgkey("Warning: data will be erased, proceed...(Y/N)? ")
  55.     $if (keyv & 05fh) <> 059h        ;'Y'?
  56.     $return             ;close this file
  57.     $end
  58.     R                    ;select pReformat option
  59.     $if initflag = 0aa55h
  60.     $keyv = msgkey("Would you like to scan bad tracks in drive...(Y/N)? ")
  61.     $if (keyv & 05fh) = 059h    ;Y or N
  62.         $key chr(F4)        ;<F4> verify drive function
  63.     $end
  64.     $end
  65.     $key chr(F1)            ;<F1> preformat drive
  66.     $keyv = msgkey("Do you like to update the above defects list...(Y/N)? ")
  67.     $if (keyv & 05fh) = 059h
  68.     Y                ;Yes, edit defect list
  69.     $else
  70.     N                ;No
  71.     $end
  72. ;   $key chr(RET)            ;use default interleaving factor
  73.     Y                    ;start to format drive
  74. $else
  75.     $keyv = msgkey("Warning: data will be erased, proceed...(Y/N)? ")
  76.     $if (keyv & 05fh) <> 059h        ;'Y'?
  77.     $return             ;close this file
  78.     $end
  79.     $del_all                ;delete all partition in drive
  80. $end
  81. ;
  82. $sizes = 0
  83. $dowhile sizes = 0            ;ask for partition size
  84.     $keyv = msgkey("Partition size in MB <1> 5, <2> 10, <3> 20, <4> 32 : ")
  85.     $keyv = keyv & 0ffh
  86.     $if keyv = 031h
  87.     $sizes = 10240            ;5MB per partition
  88.     $end
  89.     $if keyv = 032h
  90.     $sizes = 20480            ;10MB per partition
  91.     $end
  92.     $if keyv = 033h
  93.     $sizes = 40960            ;20MB per partition
  94.     $end
  95.     $if keyv = 034h
  96.     $sizes = 65534            ;32MB per partitioon
  97.     $end
  98. $end
  99. P                    ;Partition option
  100. $key chr(F1)                ;<F1> create partition
  101. $cylin = ncyln + 1            ;get total cylinders
  102. $sizes = sizes / (nheads * nsectors)    ;get partition size
  103. $minsizes = 128 / (nheads * nsectors) +1;get minimum size
  104. $npn = 0
  105. $dowhile cylin >= minsizes & npn < 16
  106.     $alloc = cylin
  107.     $if alloc > sizes
  108.     $alloc = sizes
  109.     $end
  110.     $key ",,", dec(alloc)
  111.     $cylin = cylin - alloc
  112.     $npn = npn + 1            ;count the # of partitions
  113. $end
  114. $if npn = 0
  115.     $return                ;no partition created
  116. $end
  117. ;
  118. I                    ;Initialized option
  119. $key chr(F1)                ;<F1> initialize with DOS
  120. 1                    ;partition # 1
  121. Y                    ;'Y' to start initialization
  122. $key "PART_1"                           ;volume label 'PART_1'
  123. ;** user may substitute volume name in "PART_1" of 1 line above.
  124. ;   (e.g. $key "SYSTEM" )
  125. ;
  126. ;   now, user must insert diskette(s) with
  127. ;   DOS and ADM.SYS into drive A:
  128. ;
  129. $pn = 2
  130. $dowhile pn <= npn            ;initialize all other partition(s)
  131.     $key chr(F2)            ;<F2> initialize without DOS
  132.     $key dec(pn)            ;partition #
  133.     Y                    ;'Y' to start initialization
  134. ;** user can modify the volume name in next line
  135.     $key "PART_", dec(pn)               ;volume label 'PART_#'
  136.     $pn = pn + 1            ;count partition #
  137. $end
  138. $key chr(01c00h)            ;turn off sub-menu
  139. $dowhile 1
  140.     $msgkey("Remove the diskette and press <Ctrl><Alt><Del> to reboot...")
  141. $end
  142.