home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 22 / AACD 22.iso / AACD / System / BootManager / UnInstall < prev   
Encoding:
Text File  |  2001-01-02  |  1023 b   |  42 lines

  1. ; BootManager UnInstaller Script
  2.  
  3. (message "\n\n\n\nThis Script will UnInstall BootManager.\n\nAll installed files will be removed")
  4. (delete "C:BootManager")
  5.  
  6. (set Prefs_Target
  7.             ( askfile
  8.                     (prompt "Where did you copy the prefs program ?")
  9.                     (help "it will remove BMPrefs from the directory you chose")
  10.                     (default "Sys:Prefs/BMPrefs")
  11.             )
  12. )
  13.  
  14. (delete Prefs_Target
  15.         (infos)
  16. )
  17.  
  18. (set Guide_Target
  19.             ( askfile
  20.                     (prompt "where did you copy the Guide file ?")
  21.                     (help "the Guide file will be removed froms it's location")
  22.                     (default "Help:BootManager.guide")
  23.             )
  24. )
  25.  
  26. (delete Guide_Target
  27.         (infos)
  28. )
  29.  
  30. (if (exists "S:BootManager.cfg")
  31.     (delete "S:BootManager.cfg")
  32. )
  33.  
  34. (if (exists "S:startup-sequence.bak")
  35.     ((run "delete S:Startup-sequence NOREQ QUIET")
  36.      (run "rename S:startup-sequence.bak S:startup-sequence QUIET")
  37.     )
  38. )
  39.  
  40. (set @default-dest "NO WHERE")
  41.  
  42.