home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 13 / AACD13.ISO / AACD / Utilities / 1TouchMac25 / UnInstall < prev    next >
Text File  |  1979-12-31  |  1KB  |  41 lines

  1. ; OneTouchMac Installer Script
  2.  
  3. (message "This Script will UnInstall OneTouchMac.\n\nAll installed files will be removed.\n\nIf you have not removed OneTouchMAc from your startup-sequence by using OneTouchMac_Prefs, it will be done. Otherwise you must remove OneTouchMac command from your Startup-sequence manually")
  4. (delete "C:OneTouchMac")
  5.  
  6. (set Prefs_Target
  7.             ( askfile
  8.                     (prompt "Where did you copy the prefs program ?")
  9.                     (help "it will remove OneTouchMac_Prefs from the directory you chose")
  10.                     (default "Sys:Prefs/OneTouchMac_Prefs")
  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:OneTouchMac.guide")
  23.             )
  24. )
  25.  
  26. (delete Guide_Target
  27.         (infos)
  28. )
  29.  
  30. (if (exists "S:OneTouchMac.cfg")
  31.     (delete "S:OneTouchMac.cfg")
  32. )
  33.  
  34. (if (exists "S:startup-sequence.bak")
  35.     (    (delete "S:Startup-sequence")
  36.          (rename "S:startup-sequence.bak" "S:Startup-sequence")
  37.     )
  38. )
  39. (set @default-dest "NO WHERE")
  40.  
  41.