Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- @echo off
- title MinecraftDestroyer
- echo This Utility Kills Minecraft
- echo.
- echo do you really want to kill minecraft
- echo (it will remove all files)
- echo [Y/N]
- choice /n /C:yn
- if errorlevel 1 if not errorlevel 2 goto yes
- if errorlevel 2 if not errorlevel 3 goto no
- :yes
- taskkill /im javaw.exe
- rmdir /S /Q "%appdata%\.minecraft"
- cd "%UserProfile%\Desktop"
- if exist Minecraft.* del /q /s Minecraft.*
- cls
- echo Minecraft has been deleted.
- echo.
- pause >>nul
- goto exit
- :no
- cls
- echo CU Later
- pause>>nul
- :exit
- exit
Advertisement
Add Comment
Please, Sign In to add comment