Thursday, July 26, 2012

thumbnail

Some Interesting Notepad Tricks


 1. Create a Virus which continuously eject all your connected Optical drives
This VBS trick will create a code which will continuously eject all your connected Optical drives. If you put them back in, it will pop them out again. Copy this code and paste it in Notepad as Virus.vbs or *.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 5000
loop

Double click to open this file and you will be impressed by this awesome trick.



 2. How to Create a funny Fake virus?

Now i will show how to create fake virus in your computer, this is a good computer & notepad tricks to play with your friends
S, this is the initial step to become a  hacker…
1–> open “notepad”
Type the commands given in given below :-
@echo off
C:
cls
echo hello
pause
echo im a virus
pause
echo hurray !! im become a hacker
pause

save the file as “.bat” extension
for example if your file name is “virus” save it as “virus.bat”



 3. How to shutdown the computer through notepad?

Now u can shutdown your computer using notepad and say bye…. to tradition ways ( turn off) of closing your computer
Just Type:-
@echo off
msg * u r terminated
shutdown -c “stop me if you can” -s

Save it as “turnoffurpc.bat”.
Now see notepad will shutdown ur computer with lightning speed..!



4. Test your antivirus working properly or not.

You can easily test your anti-virus program with a simple notepad trick, so that you can easily know the efficiency of your anti-virus program
Copy & paste the code below in notepad
X5O!P%@AP[4\PZX54(P^)7CC)7}$EICAR-STANDARD-ANTIVIRUS-TEST-FILE!$H+H*
Save file as “checkantivirus.com” including quotation-marks
After sometime scan this file with your anti-virus program, it will surely detect the file a virus, then make sure that your anti-virus is working properly
if not, this is a right time to change your anti-virus & try for some another..

5. Funny Virus created in Notepad

You can frustrate your friend by showing repeated messages in the notepad,by following this simple notepad tricks
Just Type below code in notepad :-
@ECHO off
:Begin
msg * Hai
msg * How are you dear….
msg * I am fine ya!
msg * Lets have fun together!
msg * Because you have been o-w-n-e-d
GOTO BEGIN

and Save it as “Anything.BAT”
now see the tricks that happens..!



No Comments