Funny VBS codes | Computer pranks
SPONSORED LINKS                              
Funny VBS codes | Computer pranks

Subscribe to COOL COMPUTER TRICKS by Email
Support Us keeping this website online 24*7 Please
Crazy CAPS lock trick
Write the above code in notepad and save it as anyname.vbs file. Run this file if you want and see the magic :p .
CD DRIVE MADNESS
This one will keep on ejecting cd drive. Try this one on your friend and just hope that he doesn’t kill you.
If you like this then you will love this one alsoSome funny pranks to play on your friends PC |
Use this codes at your own risk.
Popularity: 35%
Related Articles
Funny VBS codes | Computer pranksSubscribe to COOL COMPUTER TRICKS by Email
Support Us keeping this website online 24*7 Please
Recent Entries
- Quickly access files and folders using the stylish RocketDock
- Recover deleted files from USB drive or external memory devices
- Glx-Dock for Linux
- Download Opera portable 10.50
- O & O Defrag 11 Professional Edition [Free download]
- [How To] Always run an application as Administrator in Windows 7
- PixResizer: Resize your images with ease
- Kolibri OS – smallest OS with GUI
- Snow Leopard theme for Windows 7
- Add funny effects to your photos using PicJoke








































February 8th, 2009 at 12:44 pm
It doesn’t works.
February 8th, 2009 at 4:10 pm
Both the codes are tested and they are working properly. Do you need any help on using .vbs files??
March 8th, 2009 at 9:43 pm
it is not working………….
March 16th, 2009 at 5:06 pm
Its not only working…its working completely…
@NISHIDH
@ashvin bhatt
check ur code corectly…in error code line where u used wrong character.
its a small prog. so no doubt it will work for all rightly.
Thanx
March 22nd, 2009 at 11:07 pm
In my office they put some security system, and I am not able to open http://www.youtube.com, or any site containing mp3, video.. etc. what to do please advice. I tried, translating the site and opening but did not work, I tried proxy web like orkutpass.com and http://www.jumboproxy.net did not work either. I tried going to Google and after searching the site, clicked the Cached link it did not work either…
I keep on receiving the message:-
Access Denied (policy_denied)
Your system policy has denied access to the requested URL.
For assistance, contact your network support team.
Your request was categorized by Blue Coat Web Filter as ‘Social Networking;Streaming Media/MP3s’.
If you wish to question or dispute this result, please click here.
Suggest some thing
June 15th, 2009 at 9:02 pm
How do i run the vb codes?
Can i terminate the The cd madness code anytime?
July 4th, 2009 at 6:24 pm
^^
Yupp
and you can use your task manager for doin this
July 30th, 2009 at 6:16 pm
hey this CD room trick works its code is like this
just copy it and save it as .vbs .
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
July 30th, 2009 at 6:54 pm
Thnx for sharing dude
July 31st, 2009 at 4:00 pm
how to run the vbs files
August 2nd, 2009 at 8:27 am
Hi guys i want to known that how this cd drive madness trick does get deactivated.
August 2nd, 2009 at 11:35 am
Open task manager, click on process tab and delete wscript.exe
August 3rd, 2009 at 2:32 pm
Thanks bas
August 3rd, 2009 at 5:11 pm
u’r welcome buddy
August 5th, 2009 at 8:57 pm
[...] If you like this then you will love this one also [...]
August 25th, 2009 at 6:38 pm
[...] 4.Funny VBS codes | Computer pranks [...]
November 7th, 2009 at 5:21 am
Here’s a good one. It will un-select whatever window the victim is currently working with at random intervals.
Set oShell = WScript.CreateObject(“WScript.Shell”)
Do While True
iSleep = Rnd * 100000
Wscript.Sleep iSleep
oShell.SendKeys “%{TAB}”
Loop