home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1994 #1 / monster.zip / monster / PROG_C / WITHCLS.ZIP / UNINSTL.BAT < prev    next >
DOS Batch File  |  1993-04-30  |  2KB  |  58 lines

  1. echo off
  2. rem  ╔══════════════════════════════════════════════════════════╗
  3. rem  ║ UNINSTL.BAT batch file to UnInstall WITH CLASS diskette. ║
  4. rem  ╚══════════════════════════════════════════════════════════╝
  5. rem
  6. rem  First Check to make sure that 'TO:' parm was I/P.
  7. rem
  8.        if %1. == . goto ERR1
  9.  
  10.  
  11. :INSTALL1
  12.  
  13. rem  Setup the Uninstallation subdirectory (may not be necessary).
  14.        
  15.  
  16. rem  Now UnInstall all the programs and files.
  17.  
  18.  
  19.        del %1\WCLASS\*.exe
  20.        del %1\WCLASS\*.wri
  21.        del %1\WCLASS\*.hlp
  22.        del %1\WCLASS\*.txt
  23.        attrib -h -r %1\WCLASS\*.*
  24.        copy %1\wclass\???
  25.        echo
  26.        goto AOK
  27.  
  28. :ERR1
  29. echo off
  30. echo ╔═════════════════════════════════════════════════════════════════╗
  31. echo ║  Product UnInstall Instructions                                 ║
  32. echo ╠═════════════════════════════════════════════════════════════════╣
  33. echo ║                                                                 ║
  34. echo ║  1) Insert the WITH CLASS disk into a floppy drive, and logon to║
  35. echo ║     that drive.                                                 ║ 
  36. echo ║                                                                 ║
  37. echo ║  2) Type  "UNINSTL  (drive  letter):                            ║
  38. echo ║                                                                 ║
  39. echo ║  For example, typing "UNINSTL  C: will uninstall the            ║
  40. echo ║    System from the subdirectory named ERD on drive-C.            ║
  41. echo ╚═════════════════════════════════════════════════════════════════╝
  42.        goto END
  43.  
  44.  
  45. :AOK
  46.        echo      ╔══════════════════════════════════════════════════════╗
  47.        echo      ║  WITH CLASS UnInstallation Completed Successfully    ║
  48.        echo      ║                                                      ║
  49.        echo      ║  Now you need to take WITH CLASS out of windows.     ║
  50.        echo      ║  Launch the Windows environment.                     ║
  51.        echo      ║  UnInstall WITH CLASS from Windows using the Delete  ║
  52.        echo      ║  Command in the Program Manager.                     ║        
  53.        echo      ╚══════════════════════════════════════════════════════╝
  54.  
  55. :END
  56.  
  57.  
  58.