home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / windows / edos / remove.bat < prev    next >
DOS Batch File  |  1993-01-22  |  885b  |  34 lines

  1. @cls
  2. @if not exist edos.386 goto notok
  3. @echo This batch file will delete the files that were installed by
  4. @echo EDOS Setup.
  5. @echo Press any key to continue, Ctrl+C to abort
  6. @pause > NUL:
  7. @echo ARE YOU ABSOLUTELY sure? Press any key to continue, Ctrl+C to abort
  8. @pause > NUL:
  9. del dos704k.bat
  10. del dos736k.bat
  11. del dos704k.pif
  12. del dos736k.pif
  13. del ..\iswin.com
  14. del ..\edosexit.com
  15. del ..\clipboar.com
  16. del ..\edosbli.exe
  17.  
  18. @echo Now, by hand, you should delete the files in this directory
  19. @echo and then delete the directory. The sample commands look like this:
  20. @echo del *.*
  21. @echo cd ..
  22. @echo rd edos
  23. @echo Press any key to continue, Ctrl+C to abort
  24. @pause > NUL:
  25. @cls
  26. @echo del *.*
  27. @echo cd ..
  28. @echo rd edos
  29. goto ok
  30. :notok
  31. @echo This does not appear to be the windows\edos subdirectory
  32. @echo Be sure to change directory to the Windows\edos subdirectory
  33. :ok
  34.