Introduction: Some Computer Tricks You Should Try Now !

About: I'm a Web Developer. But, I Love Electronics!
  1. Create a funny virus- Eject CD/DVD Drive contineusly.
  2. Make your computer greet you every time you start Windows.
  3. Use Your keyboard as a mouse.

Step 1: Create a Funny Virus- Eject CD/DVD Drive Continuously.

  1. First open notepad.
  2. now copy the following code to notepad.
  3. Save the file as "funnyPrank.vbs".

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 5000 loop

Run This.

Have Fun.

To stop this:

  1. Start task manager.
  2. Goto Processes tab.
  3. Search for "wscript.exe" in the list.
  4. click that and press delete.

Step 2: Make Your Computer Greet You Everytime You Start Windows

  1. Open Notepad.
  2. Copy the given code in it.
  3. replace 'Username'by your name.
  4. and save it as "welcome.vbs".

Dim speaks, speech
speaks="Welcome to your PC, Username" Set speech=CreateObject("sapi.spvoice") speech.Speak speaks

Now copy this file to: C:\Documents and Settings\Administrator\Start Menu\Programs\Startup\

You are Done.

Everytime when you open the windows it will greet you.

To stop this:

  1. Start task manager.
  2. Goto Processes tab.
  3. Search for "wscript.exe" in the list.
  4. click that and press delete.

Step 3: Use Keyboard As a Mouse

  1. Press Ctrl + Shift(left) + NumLock.
  2. Now click "Ok" in the dialogue box.
  3. Now make sure that NumLock is On.
  4. Press 5 to click, Press twice to double click.
  5. Press 8 to move cursor up, 2 to move down, 6 to move right, 4 to move left.

Thanks.