home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 5 Edit / 05-Edit.zip / texed133.zip / English.zip / DeInst.cmd < prev    next >
OS/2 REXX Batch file  |  1995-11-15  |  745b  |  20 lines

  1. /**********************************************************/
  2. /* TeXEdit Deinstallation 1.0                             */
  3. /*                                                        */
  4. /* Delete all entries made by TeXEdit from the OS/2-INI   */
  5. /*                                                        */
  6. /**********************************************************/
  7.  
  8. call rxfuncadd sysloadfuncs, rexxutil, sysloadfuncs
  9. call sysloadfuncs
  10.  
  11. say "TeXEdit Deinstl"
  12. say "Delete all TeXEdit settings from the INI files."
  13. say "Continue? [y/n]"
  14. pull weiter
  15. if weiter \= 'y' then return
  16.  
  17. rc = SysIni( 'USER', 'TeXEditor', 'DELETE:')
  18. if rc \= 'ERROR:' then say 'Settings successful deleted'
  19. else say 'ERROR: Unable to delete settings.'
  20.