home *** CD-ROM | disk | FTP | other *** search
/ Magazyn Amiga Shareware Floppies / ma20.dms / ma20.adf / BootScreen / Upgrade < prev    next >
Text File  |  1994-05-28  |  949b  |  48 lines

  1. ; Install script for BootScreen
  2. ; Copyright ©1994 by Joseph Luk, all rights reserved.
  3. ; $VER: BootScreen 2.00, BootScreenClose 2.00, BootScreen Prefs 2.00
  4.  
  5. (set #PRGVersion 
  6.    ("2.00")
  7. )
  8.  
  9.  
  10. (welcome 
  11.    ("This procedure is for users of older BootScreen versions.  It will automatically remove old files and prepare you for BootScreen ")
  12.    (#PRGVersion)
  13.    ("!\n\nThe recommended user level is \"Intermediate\".")
  14. )
  15.  
  16. (set #choice
  17.    (askchoice
  18.       (prompt "Please select which version you are upgrading from:")
  19.       (help @askchoice-help)
  20.       (choices
  21.          ("BootScreen 1.x (1.00, 1.01)");
  22.          ("BootScreen37 1.x");
  23.       )
  24.    )
  25. )
  26.  
  27. (select #choice
  28.    (
  29.       (delete "C:BootScreen")
  30.       (run "bin/c/Update1.x")
  31.    )
  32.    (
  33.       (delete "C:BootScreen37")
  34.       (run "bin/c/Update37")
  35.    )
  36. )
  37.  
  38.  
  39. ; that's it!
  40.  
  41. (set @default-dest "SYS:")
  42.  
  43. (message
  44.    "All done!\n\n"
  45.    "You are now ready to run the main installation procedure."
  46. )
  47.  
  48. (exit)