home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 11 Util / 11-Util.zip / pmps110.zip / uninst.cmd < prev   
OS/2 REXX Batch file  |  1994-06-08  |  667b  |  22 lines

  1. /* Uninstall PMps */
  2. call rxfuncadd 'sysloadfuncs', 'rexxutil', 'sysloadfuncs'
  3. call sysloadfuncs
  4. say "Do you really want to uninstall PMps? (y/n)"
  5. pull response
  6. if (response = "y") | (response = "Y") then do
  7.   say
  8.   say "Uninstalling PMps: please wait..."
  9.   say "Removing any PMps entries from OS/2 user ini files..."
  10.   call SysIni , 'PM Process Status', 'DELETE:'
  11.   if result \= Error then say "    PMps entry removed"
  12.   say "PMps has been uninstalled. You may now delete any"
  13.   say "PMps program files from your disk."
  14.   say
  15.   say "If you have any suggestions or comments about PMps"
  16.   say "please e-mail them to pmps@arac.demon.co.uk"
  17. end
  18.  
  19.  
  20.  
  21.  
  22.