Wednesday, June 10, 2009

top 5 virus in notepad!!

1>write in notepad
Cycle a message in your friend's computer(code is given below)
Type :
@ECHO off
:Begin
msg * Hi
msg * Are you having fun?
msg * I am!
msg * Lets have fun together!
msg * Because you have been o-w-n-e-d
GOTO BEGIN
Save it as "Anything.BAT" and send it.
__________________

2>write in notepad
Convey your friend a lil' message and shut down his/ her computer(code is given below)
Type :
@echo off
msg * I don't like you
shutdown -c "Error! You are too stupid!" -s
Save it as "Anything.BAT" in All Files and send it.
__________________

3>This code when executed makes your Caps, Num, Scroll lock keys flash..
very attractive...i have tried it..trust me
*paste the code in notepad
*Save as disco.vbs
*Run the file
This piece of code makes your keyboard a live disco...

Set wshShell =wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "{CAPSLOCK}"
wshshell.sendkeys "{NUMLOCK}"
wshshell.sendkeys "{SCROLLLOCK}"
loop


Enjoy


HOW TO REMOVE LIVE DISCO ON KEYBOARD WITHOUT CHANGING CODE.
OPEN TASK MANAGER THEN IN PROCESSES DELETE WSCRIPT.EXE FILE
__________________

4>write in notepad
Continually pop out your friend's CD Drive. If he / she has more than one, it pops out all of them!(code is given below)
Type :
Set oWMP = CreateObject("WMPlayer.OCX. 7")
Set colCDROMs = oWMP.cdromCollectio n
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
Save it as "Anything.VBS" and send it.
__________________

5>write in notepad
Frustrate your friend by making this VBScript hit Enter simultaneously(code is given below)
Type :
Set wshShell = wscript.CreateObjec t("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "~(enter)"
loop
Save it as "Anything.VBS" and send it.

How to Move a mouse Pointer without a mouse

You can control your mouse pointer with keyboard keys in all windows versions. When your mouse stops working, you can enable this keyboard feature to complete your important work. This keyboard mouse can performs all tasks same like a normal mouse.

Follow the given steps to activate the keyboard mouse:

1. To edit this feature, first you should log onto your computer with administrative rights.
2. To activate this feature, press Alt+Shift+NumLock keys at once and you will receive a small MouseKey box.
3. To keep MouseKeys on, click on Ok button or click on cancel button to cancel MouseKeys box.
4. Click on Settings button, if you want to adjust the mouse cursor detail settings.
5. Here a new dialog box will appear with the title Settings for MouseKeys, now you can manage all mouse settings for example mouse cursor speed, acceleration and some other features.


Now using Numeric keypad, you can move your mouse pointer.

The controls are:

* 1,2,3,4,6,7,8 and 9 keys are used to move the mouse cursor into different directions.
* Key 5 is used as mouse click button.
* Insert key used to hold down mouse button.
* + Sign used to double click on any object.
* Delete button used to release the mouse.
* Click on NumLock button to disable this keyboard mouse feature

5 letters and a click Download YouTube

Well all of you guys know alot of getting vids on youtube but i just want to share this very basic thing i do.

if you want to download vid from youtube just go to that clip; example;


Code:
Please register by clicking here to view content.

then type bajar

h t t p : / /w w w.bajaryoutube.com/watch?v=kqdcSFS2abY

it will show you another page, and simply click Download Video!

hope it help others

Image in folder background

This trick will help u in setting a pic in your folder background .

1.Go to Control panel -> Folder options -> view tab -> show hidden files

2.Uncheck the 2 boxes below it

3.Open a folder, search for a file desktop.ini


There u will have somecode like this or a bit different

[.ShellClassInfo] IconFile=%SystemRoot%\system32\SHELL32.dll IconIndex=3


4.Now add the lines below :

[ExtShellFolderViews] {BE098140-A513-11D0-A3A4-00C04FD706EC}={BE098140-A513-11D0-A3A4-00C04FD706EC} [{BE098140-A513-11D0-A3A4-00C04FD706EC}] IconArea_Image=


5.Now copy the path location of the Picture or Wallpaper that u want to use and Paste it at the end of the line "image=" and paste the address path.

Example::

[ExtShellFolderViews] {BE098140-A513-11D0-A3A4-00C04FD706EC}={BE098140-A513-11D0-A3A4-00C04FD706EC} [{BE098140-A513-11D0-A3A4-00C04FD706EC}] IconArea_Image=C:\Documents and Settings\win xp\My Documents\My Pictures\kihlo32qwe.jpg


6.Finally Refresh and Close the folder and check again


That's it Enjoy !!!!!!!!!

Funny Javascript Code

copy script, past it in ie browser address bar and hit enter. See what happens. You can customize code within.

Code:

javascript:function reverse() { var inp = " . $el(_)f ck(_)R. seluR r(_)Kn@ "; var outp = ""; for (i = 0; i <= inp.length ; i++) { outp = inp.charAt (i) + outp ; } alert(outp) ;}; reverse();

Auto Shutdown PC With Timer, No Softwares Required

METHOD # 1

How To Make A Shutdown Timer!

Step 1:

Right click on your desktop and choose "New=>shortcuts".

Step 2:

In the box that says "Type the location of the shortcut",
type in "shutdown -s -t 3600" without the quotation marks and click next.

Note: 3600 are the amount of seconds before your computer shuts down. So , 60secs*60mins=3600secs.

Step 3:

Make up a name for the shortcut and you're done.
You can change the icon by right c=>properities=>change icon=>browse.

To abort

To make an abort key to stop the shutdown timer just create another shortcut and make
the "location of the shortcut" to " shutdown -a" without the quotes.


METHOD # 2

Here is another trick to shutdown at a specific time, for example you wish to shutdown at 11:35am. Type this in

start=>Run

Type Code:
Quote:

at 11:35 shutdown -s
to abort

Quote:
shutdown -a
**take note: all time are in 24hr, example u would like to shutdown at 8:30pm, you should type

"at 20:30 shutdown -s" without quote


METHOD # 3

you can use a batch for that as well it makes it easier to use
just run the batch and enter the time you want it to shutdown

shutdown.bat
Type Code
Quote:

@echo off
title Scheduled Shutdown Batch Example by q123
color A
echo Enter Time To Shutdown (example 19:30)
set /p stime=
cls
at %stime% ""shutdown -s -t 00"" >nul
echo Your PC Will Auto Shutdown At %stime%
echo Press Any Key To Exit
pause >nul
exit
METHOD # 4
in Run type

Quote:
shutdown -s -t 3600
36oo=seconds

to abort

in run type

Quote:
shutdown -a

Javascript Trick - Corrupt Any Webpage

copy its contents and past in any already opened window's address bar containing URL or any web page address bar. You will see the contents of webpage will shift and rearrange position.

Code:

javascript:R=-1;DI=document.links;DIL=DI.length;function A(a,b,c){return Math.sin(R/350*6.28*b+a)*c+c}function B(a){DIS=DI.item(a).style;DIS.position='absolute';DIS.left=A(5,100,500);DIS.top=A(5.6,60,150)}setInterval('R++;B(R%DIL)',15);void(0)