home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / komix / DATA.Z / rmf.bat < prev    next >
DOS Batch File  |  1996-11-21  |  278b  |  18 lines

  1. @echo off
  2. if "%OS%"=="" goto Windows95
  3. if "%OS%"=="Windows_NT" goto WindowsNT
  4. :WindowsNT
  5. if "%1"=="" goto end
  6. echo Removing: %1
  7. del /q /f %1
  8. shift 
  9. goto WindowsNT
  10. :Windows95
  11. if "%1"=="" goto end
  12. echo Removing: %1
  13. deltree /y %1
  14. shift
  15. goto Windows95
  16. :end
  17. echo ok
  18.