Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
328 B

  1. @echo off
  2. setlocal enableextensions
  3. set ROOTDIR=%1
  4. if '%ROOTDIR%' == '' goto Usage
  5. del /q /s /f %ROOTDIR%\*.pch >nul
  6. del /q /s /f %ROOTDIR%\*.sbr >nul
  7. del /q /s /f %ROOTDIR%\*.bsc >nul
  8. del /q /s /f %ROOTDIR%\*.scc >nul
  9. del /q /s /f %ROOTDIR%\*.ilk >nul
  10. goto End
  11. :Usage
  12. echo Usage: DeleteTempFiles.cmd RootDir
  13. :End
  14. endlocal