Advertisement
l33tissw00t

HomedirCleanup

Mar 15th, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 1.40 KB | None | 0 0
  1. @echo OFF
  2. TITLE User Profile Cleanup (For Rentals)
  3. echo Clearing User Profile: %USERPROFILE%
  4. echo Clearing Desktop...
  5. echo.
  6. FOR /D %%p IN ("%USERPROFILE%\Desktop\*") DO rmdir "%%p" /s /q
  7. md "%USERPROFILE%\Desktop\BackedUpShortcuts" 2> NUL
  8. move "%USERPROFILE%\Desktop\*.lnk" "%USERPROFILE%\Desktop\BackedUpShortcuts"
  9. del /f /s /q "%USERPROFILE%\Desktop\*"
  10. echo Clearing Documents...
  11. echo.
  12. del /f /s /q "%USERPROFILE%\Documents\*"
  13. FOR /D %%p IN ("%USERPROFILE%\Documents\*") DO rmdir "%%p" /s /q
  14. echo Clearing Downloads...
  15. echo.
  16. del /f /s /q "%USERPROFILE%\Downloads\*"
  17. FOR /D %%p IN ("%USERPROFILE%\Downloads\*") DO rmdir "%%p" /s /q
  18. echo Deleting Dropbox Folder...
  19. echo.
  20. rmdir /s /q "%USERPROFILE%\Dropbox"
  21. echo Clearing Music...
  22. echo.
  23. del /f /s /q "%USERPROFILE%\Music\*"
  24. FOR /D %%p IN ("%USERPROFILE%\Music\*") DO rmdir "%%p" /s /q
  25. echo Deleting OneDrive Folder...
  26. echo.
  27. rmdir /s /q "%USERPROFILE%\OneDrive"
  28. echo Clearing Pictures...
  29. echo.
  30. del /f /s /q "%USERPROFILE%\Pictures\*"
  31. FOR /D %%p IN ("%USERPROFILE%\Pictures\*") DO rmdir "%%p" /s /q
  32. echo Clearing Videos...
  33. echo.
  34. del /f /s /q "%USERPROFILE%\Videos\*"
  35. FOR /D %%p IN ("%USERPROFILE%\Videos\*") DO rmdir "%%p" /s /q
  36. echo.
  37. echo Done
  38. echo.
  39. echo -------------------------------------------------
  40. echo.
  41. echo Resetting Chrome...
  42. echo.
  43. RD /S /Q "%UserProfile%\AppData\Local\Google\Chrome\User Data"
  44. echo.
  45. echo.
  46. echo Finished!
  47. echo.
  48. pause
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement