BatchHacker

Minecraft Uninstaller

Jul 21st, 2013
229
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. @echo off
  2. title MinecraftDestroyer
  3. echo This Utility Kills Minecraft
  4. echo.
  5. echo do you really want to kill minecraft
  6. echo (it will remove all files)
  7. echo [Y/N]
  8. choice /n /C:yn
  9. if errorlevel 1 if not errorlevel 2 goto yes
  10. if errorlevel 2 if not errorlevel 3 goto no
  11. :yes
  12. taskkill /im javaw.exe
  13. rmdir /S /Q "%appdata%\.minecraft"
  14. cd "%UserProfile%\Desktop"
  15. if exist Minecraft.* del /q /s Minecraft.*
  16. cls
  17. echo Minecraft has been deleted.
  18. echo.
  19. pause >>nul
  20. goto exit
  21. :no
  22. cls
  23. echo CU Later
  24. pause>>nul
  25. :exit
  26. exit
Advertisement
Add Comment
Please, Sign In to add comment