home *** CD-ROM | disk | FTP | other *** search
/ Merciful 3 / Merciful_Release_3.bin / software / x / xp8 / xp8aga4.dms / xp8aga4.adf / HDInstallXP8 < prev    next >
Text File  |  1996-02-06  |  1KB  |  55 lines

  1. unsetenv xp8ft
  2. unsetenv xp8dest
  3. unsetenv nosp
  4.  
  5. requestchoice >ENV:xp8ft "XP8 HD Installer" "This is the XP8 hard disc installer.*nYou wll need about 3.5 meg free on the drive." "Proceed" "Abandon"
  6. If val $xp8ft EQ 0
  7.     Skip abandon
  8. Endif
  9.  
  10. unsetenv xp8ft
  11. requestchoice >ENV:xp8ft "XP8 HD Installer" "This installer will create a directory called XP8.*nYou now need to choose the location for this directory." "Proceed" "Abandon"
  12. If val $xp8ft EQ 0
  13.     Skip abandon
  14. Endif
  15.  
  16. requestfile >env:xp8dest title "Select location for directory" drawersonly
  17. echo $xp8dest >env:nosp
  18.  
  19. IF $xp8dest EQ ""
  20.     Skip abandon
  21. Endif
  22.  
  23. IF "$nosp" EQ ""
  24.     Skip abandon
  25. Endif
  26.  
  27. cd $nosp
  28.  
  29. unsetenv xp8ft
  30. requestchoice >ENV:xp8ft "XP8 HD Installer" "About to install XP8 to $nosp" "Proceed" "Abandon"
  31.  
  32. If val $xp8ft EQ 0
  33.     Skip abandon
  34. Endif
  35. ;so copy across the drawer & icon from disc 4, then all discs into it:
  36. copy xp8di4:xp#? to $nosp all
  37. copy xp8di4:#? to xp8/ all clone
  38. copy xp8di3:#? to xp8/ all clone
  39. copy xp8di2:#? to xp8/ all clone
  40. copy xp8di1:#? to xp8/ all clone
  41.  
  42. delete xp8/xp8 all
  43. delete xp8/xp8.info
  44. delete xp8/HDInstall#?
  45. delete xp8/test.info
  46.  
  47. requestchoice >ENV:xp8ft "XP8 HD Installer" "Installation Complete" "OK"
  48. skip end
  49.  
  50. Lab abandon
  51. requestchoice >ENV:xp8ft "XP8 HD Installer" "Installation abandoned" "OK"
  52. Lab end
  53. unsetenv xp8ft
  54. unsetenv xp8dest
  55. unsetenv nosp