Guest User

Untitled

a guest
Jun 25th, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. REM Detect how many files are on the C: drive
  2. dir /s /b C: |find /c "" > NUMfiles.###
  3. set /p count1=<NUMfiles.###
  4.  
  5. ##### TEMP FILES DELETED HERE, RUN CCLEANER, RUN MBAM, ETC #####
  6.  
  7. REM Calculate Total Files Deleted
  8. dir /s /b C: |find /c "" > NUMfiles.###
  9. set /p count2=<NUMfiles.###
  10. set /a count3=%count1% - %count2%
  11. echo Number of files removed: %count3%
  12.  
  13. dir /a /s /OG C: |find /v "<DIR>" | find /c "M "
  14.  
  15. dir /a /s /OG C: |find /v "<DIR>" | find /c "/"
Add Comment
Please, Sign In to add comment