home *** CD-ROM | disk | FTP | other *** search
- ; BootManager UnInstaller Script
-
- (message "\n\n\n\nThis Script will UnInstall BootManager.\n\nAll installed files will be removed")
- (delete "C:BootManager")
-
- (set Prefs_Target
- ( askfile
- (prompt "Where did you copy the prefs program ?")
- (help "it will remove BMPrefs from the directory you chose")
- (default "Sys:Prefs/BMPrefs")
- )
- )
-
- (delete Prefs_Target
- (infos)
- )
-
- (set Guide_Target
- ( askfile
- (prompt "where did you copy the Guide file ?")
- (help "the Guide file will be removed froms it's location")
- (default "Help:BootManager.guide")
- )
- )
-
- (delete Guide_Target
- (infos)
- )
-
- (if (exists "S:BootManager.cfg")
- (delete "S:BootManager.cfg")
- )
-
- (if (exists "S:startup-sequence.bak")
- ((run "delete S:Startup-sequence NOREQ QUIET")
- (run "rename S:startup-sequence.bak S:startup-sequence QUIET")
- )
- )
-
- (set @default-dest "NO WHERE")
-
-