home *** CD-ROM | disk | FTP | other *** search
/ PC Gamer 2.2 / 1996-03_Disc_2.2.iso / scream / univbe / bin.001 / UNINSTAL.BAT < prev    next >
DOS Batch File  |  1995-03-30  |  1KB  |  27 lines

  1. @echo off
  2. echo This batch file will uninstall UniVBE by restoring your original
  3. echo AUTOEXEC.BAT and Windows configuration files. If you have made major
  4. echo additions to your system since you installed UniVBE, these changes will
  5. echo also be undone.
  6. echo.
  7. echo This batch file will backup your current config files as AUTOEXEC.ORG,
  8. echo WIN.ORG and SYSTEM.ORG in case you wish to reverse this operation.
  9. echo.
  10. echo Press any key to continue with UNINSTALL, or Ctrl-C to exit...
  11. echo.
  12. pause
  13.  
  14. copy c:\autoexec.bat c:\autoexec.org
  15. copy c:\autoexec.vbe c:\autoexec.bat
  16. copy c:\windows\win.ini c:\windows\win.org
  17. copy c:\windows\win.vbe c:\windows\win.ini
  18. copy c:\windows\system.ini c:\windows\system.org
  19. copy c:\windows\system.vbe c:\windows\system.ini
  20.  
  21. echo UniVBE uninstalled! Note that the UniVBE program files have not been
  22. echo deleted. You can delete them manually now if you wish (delete all of
  23. echo C:\UNIVBE if you used the default installation).
  24. echo.
  25. echo Please reboot your system for the changes to take effect.
  26.  
  27.