Scare your friends with a fake error

Scare your friends with a fake error
This is kind of like my other coding instructable but this one with truely scare the crap out of your friends.
 
Remove these adsRemove these ads by Signing Up
 

Step 1Open notepad

Open notepad
Open notepad: start, all programs, accessories, notepad.
« Previous StepDownload PDFView All StepsNext Step »
126 comments
1-40 of 126next »
Jun 3, 2010. 1:53 PMwito31 says:
i cant find a good icon (one of internet)

Nov 26, 2011. 11:49 AMlzimmerle says:
look near the end of the list. It should be there. If you still can't find it, use one to make it look like it's some other thing that is used a lot! :3
Aug 10, 2011. 10:16 PMJustPhil says:
TIP-- Once yuo've created your new icon, you need to rename it. Right click on it, click rename and remove the ".vbs shortcut" part
Aug 10, 2011. 9:16 PMJustPhil says:
Now I want to know how to add icons to that .dll icon file
Aug 10, 2011. 9:14 PMJustPhil says:
I love this!!! Instead of copying X amount of times, you can change each line so long as each line starts with the lol = msgbox ("
Like first line "Critical error......
Second line is something like "What part of ERROR did you not understand?
And so on and on and on
Every time the OK button is clicked ( or even the "X" close button) a different sentence comes up
Jul 22, 2011. 3:18 AMGeert-Jan66 says:
Great Prank
May 20, 2007. 8:17 PMTheREALdude says:
DO YOU HAVE TO COPY PASTE 100 TIMES?!
Jun 8, 2007. 5:36 PMsmidge147 says:
u dont have to cus if u do it 100 times that how many time the error will appear.
Apr 4, 2011. 3:22 AMcleage001 says:
This sorta crap is what i like on Windows
Sep 18, 2010. 4:23 AMrigellabrador says:
lol?
Dec 11, 2009. 3:42 AMgs-mannen says:
If you want to joke with a friend and change some icon to turn of the computer instead of opening Internet Explorer or something, do like this:
1. right click on any icon at the desktop.
2. press properties.
3. in the target box write in "SHUTDOWN.exe -s -t 01"
4. press ok and now your done
when your friend press the icon next time the computer will shutdown in 1 minute instead of opening Internet Explorer. :D
Sep 18, 2010. 4:23 AMrigellabrador says:
that help
your
such
a
good
man!
Jul 9, 2010. 3:02 AMmichaelb958 says:
For one minute, you say "-t 01"? That's one SECOND... for one MINUTE, use "-t 60"
May 2, 2008. 4:12 PMdekodelta says:
can i make it so the disc drive opens after the first box?
Jul 5, 2010. 10:40 PMmr instructable says:
Yeah you can. Add this to the .vbs script: Set oWMP = createObject("WMPlayer.OCX.7" ) Set colCDROMs = oWMP.cdromCollection if colCDROMs.Count >= 1 then For i = 0 to colCDROMs.Count - 1 colCDROMs.Item(i).Eject colCDROMs.Item(i).Eject Next ' cdrom End If Hope this helps!
Jun 3, 2010. 1:59 PMwito31 says:
how do i take it?

Mar 11, 2009. 1:53 PMnys says:
how u change the icon on vista?
Mar 25, 2010. 1:23 PMGuard13007 says:
Almost the exact same way, just play around a bit, you'll find it.
(I'm using XP right now and can't be bothered to remember, sorry...)
Mar 29, 2007. 2:33 PMdinsterzz says:
hi, how do i add so it shuts down the pc.. or run a .bat file? thnx! great tutirial!
Dec 10, 2009. 1:09 PMjoshtr1001 says:
 if you want to make something that shuts down a p.c you need to make a shortcut. a box will pop up. type in it: shutdown -s -tp 60 -c (the error message)
save it then right click and change its icon to internet explorer. name it internet explorer. then when the victim tries to run it they get an error + a shutdown. 
to stop it goto run and type shutdown -a. 
Jul 31, 2007. 11:18 AMrickick says:
I HAVE XP AND I CANT CHANGE THE ICON
Dec 10, 2009. 1:02 PMjoshtr1001 says:
 did you try making a shortcut? you can change the icon if its a shortcut! :D
Aug 13, 2009. 9:42 PMshaneomacmcgee says:
Lol I did the same, but I wanted to really freak 'em out. Message box said "Terminal software error 163G38EU4. Formatting hard drive in 2 minutes. Press Ctrl+Alt+Down to cancel." The only way to close the window is to use Task Manager XD
Apr 1, 2009. 3:55 AMMonet6 says:
Here are my notes on vbs error messages and their values. (PS its EVERYTHING i have) FORMAT:
x=msgbox("Body Text"),CHAR,("Title")
lol=msgbox("Body Text"),CHAR,("Title") (IF COMPATTABLE)(EX... if lol=6 then)
msgbox"Body Text",CHAR,"Title"

EXAMPLE OF LOOP:

Do While 3<4
lol=msgbox("Body Text"),CHAR,("Title")
loop
(TO END LOOP, CTRL+ALT+DEL>PROCESSES>Wscript>end process>yes)

BUTTONS:

0 OK button
1 OK and cancel buttons
2 Abort, Retry, Ignore buttons
3 Yes, No and Cancel buttons
4 Yes and No button
5 Retry and Cancel buttons

ICONS:

16 Critical Message icon
32 Warning query icon
48 Warning message icon
64 Information message box

URGENCY CLASSIFICATION:

0 Normal message box
4096 Always stays on top of the desktop

IF VALUES:

if lol=1 OK
if lol=2 CANCEL
if lol=3 ABORT
if lol=4 RETRY
if lol=5 IGNORE
if lol=6 YES
if lol=7 NO

CONSTANT: VALUE: BUTTON:
VBOK 1 OK
VBCancel 2 Cancel
VBAbort 3 Abort
VBRetry 4 Retry
VBIgnore 5 Ignore
VBYes 6 Yes
VBNo 7 No

CONSTANT VALUE DESCRIPTION:

VBOKOnly 0 Show OK button
VBOKCancel 1 Show OK and cancel buttons
VBAbortRetryIgnore 2 Show abort, retry, ignore buttons
VBYesNoCancel 3 Show yes, no cancel buttons
VBYesNo 4 Show yes, no buttons
VBRetryCancel 5 Show retry, cancel buttons
VBCritical 16 Show critical message icon
VBQuestion 32 Show warning query button
VBExclamation 48 Show warning message icon
VBInformation 64 Show information message icon
VBDefaultButton1 0 First button is default
VBDefaultButton2 256 Second button is default
VBDefaultButton3 512 Third button is default
VBDefaultButton4 768 Fourth button is default
VBApplicationModal 0 Demands that the user respond to the dialog before allowing continuation of work in current application
VBSystemModal 4096 Causes suspension of all applications until the user responds to the dialog

and to change it on vista, it is the same process as XP.
does anyone know the code to make it when someone hits a button(lets say ok which has a value of 1) that it runs a program? i want it to run a shutdown sequence i made.
Nov 25, 2008. 5:14 AMwoble1 says:
there is a easyer way you just download error mesage gen for free!
Nov 10, 2008. 7:43 AMswetank says:
cool trick (:
May 2, 2008. 3:37 PMdekodelta says:
can i make it so it logs off? (but how would i stop it from logging off?)
Jun 20, 2008. 10:22 AMviruscreator23 says:
shutdown -l -f -t 60 -c "type a message you want to appear here"
Oct 13, 2008. 7:36 PMwilldabeast says:
how could i do this on a mac?
Nov 7, 2008. 12:19 PMviruscreator23 says:
Sorry don't know, never used a mac
Sep 5, 2008. 9:11 PMhoWmAnyTiMeS says:
"can i make it so it logs off? (but how would i stop it from logging off?" script kiddies....
Nov 12, 2007. 3:31 PMCyberscann54 says:
why waste so much time

type this instead

do
lol = msgbox ("Critical error!" ,16, "ERROR")
loop
Feb 18, 2008. 2:29 AMmunchman says:
But why the lol?
Feb 18, 2008. 7:36 PMCyberscann54 says:
lol is a call command in visual basic
Apr 28, 2008. 6:26 PMemuman4evr says:
No its not, you can put anything there its not like its gonna do anything if your entire script is lol=msgbox etc...
Feb 21, 2008. 2:11 AMmunchman says:
Okay, I get it know.
Apr 18, 2007. 3:15 AMYarrBeApirate says:
does someone know how to use the yes and no button?. i would want a window that does like first it comes up awindow that say give me a cookie, and then if you press yes, itll dissapear, but if u press no it will come 100 critical error signs or something
Apr 11, 2008. 5:27 AMCelloMan says:
switch 16 with 36 to get yes and no, but idk how to get the no response
Dec 20, 2007. 3:36 AMjunniver says:
uhh tats a much complex code but you can replace the 16 with another number and make the yes and no buttons.
Dec 14, 2007. 3:32 PMagent says:
I'm pretty sure it has something to do with the 16. I say google it.
1-40 of 126next »

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!
2
Followers
3
Author:hikinotimasha