Sunday, 28 October 2012

CONVERT KEYBOARD INTO LIVE DISCO

CONVERT KEYBOARD INTO LIVE DISCO

 

This is a real funny trick with which you can amuse you friends.It doesnot require any programming skills on your part.This trick will make your keyboard LED’s blink like disco lights.This method is based on an a vb script.The blinking of the lights will continue until and unless you stop it.This looks more fascinating in the dark as the keyboard led’s are very small.OK,now here is the step by step tutorial with screenshots on how to convert your keyboard into Live disco.

DISCRIPTION

 1.Open notepad.You can open notepad by doing a right click on your desktop and then new->text document.

 2.Copy and paste the code below into the notepad:-

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


3.Save the file with name disco.vbs
4.Double click on the saved file and your keyboard Led’s will start blinking like disco lights.
5.To stop the disco lights open task manager.You can open task manager by doing a right click on your taskbar and then selecting task manager.
 6.Now locate wscript.exe and select it.Click on “ End Process “.
ENJOY THE TRICK


Saturday, 27 October 2012

INCREASE VIRTUAL RAM TO MAKE YOUR SYSTEM FASTER

DISCRIPTION

  Right Click on My Computer and Select Properties .
Now Click on the Advanced Tab. 
Now Under Performance Tab click on Settings . 
Click on Advanced Tab on the Button that Pops up .
 Now Under Virtual Memory Click on Change >- Custom Size.
For the initial size (depending on your HD space), type in anywhere from 1000-1500 ,and for the Maximum size type in anywhere from 2000-2500.
 Now Click on Set and then exit out of all the windows.
Restart your Computer and now you have faster computer and 1-2 GB Virtual RAM
ENJOY THE TRICK

Friday, 26 October 2012

REMOVE SHORTCUT ARROW FROM DESKTOP ICONS


DISCRIPTION


Sometimes when you use shortcut's on desktop for your frequently used files or movies it is ugly to see a small Shortcut arrow at the bottom corner of the Shortcut icon.

    Here's how you can remove those shortcut arrows from your desktop icons in Windows XP

Start regedit ie; Start->Run->regedit

 Navigate to HKEY_CLASSES_ROOT\lnkfile

             If you find difficult in reaching this file location, simply Press Ctrl+F to open find window. Enter "Is Shortcut" and click find. now Press f3 till you get the file Inkfile located at Hkey_Classes_Root\Inkfile

 Delete the IsShortcut registry value.

 You may need to restart Windows XP..
ENJOY THE TRICK


HOW TO DISABLE THE AUTORUN FUNCATIO IN WINDOWS XP


DISCRIPITON

 Click Start, and then click Run.
    In the Open box, type regedit, and then click OK.
    Locate and then click the following registry subkey:
    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\policies\Explorer\
    Right-click in the right side pane, point to New, and then click DWORD Value.
    Type HonorAutorunSetting, and then press ENTER.
    In the Value data box, type 1, click Hexadecimal if it is not already selected, and then click OK.
    Exit Registry Editor.
    Restart the system for the new settings to take effect.
ENJOY THE TRICK



Wednesday, 24 October 2012

HOW TO MAKE NEW USER ACOOUNT IN COMMAND

DISCRIPTION

Go to "run" type "cmd" And then type  
     "net user /add username password "  
And Then press Enter         
Enjoy the trick.,.




HOW TO HACK COMPUTER PASSWORD IN COMMAND PROMPT

DISCRIPTION

Go to Run then cmd and then type.

" net use " and then enter
" net user username " and then enter
" net user username * "and then enter
type your password that u want.

Enjoy The Trick

HOW TO LOCK FOLDER WITHOUT ANY SOFTWARE

 DISCRIPTION

Open Notepad [Start-->Run-->Notepad].
In your Notepad just Copy/Paste the below code.
cls
:End
@ECHO OFF
title Folder Locker
if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
if NOT EXIST Locker goto MDLOCKER
:CONFIRM
echo Are you sure u want to Lock the folder(Y/N)
set/p "cho=>"
if %cho%==Y goto LOCK
if %cho%==y goto LOCK
if %cho%==n goto END
if %cho%==N goto END
echo Invalid choice.
goto CONFIRM
:LOCK
ren Locker "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
attrib +h +s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
echo Folder locked
goto End
:UNLOCK
echo Enter password to Unlock folder
set/p "pass=>"
if NOT %pass%==avhkr goto FAIL
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" Locker
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDLOCKER
md Locker
echo Locker created successfully
goto End

In the above batch code the password has been set as avhkr.You can change it by editing the following line...

Now save this notepad file as yourfoldername.bat ,here .bat is extension of your file. For now I am creating avhacker.bat file.

Double Click on this .bat file and you will see a Locker Folder at the same location where your .bat file is saved.

Double click on that Locker folder and store your personal data in it.
After storing all your data in that folder again double click on .bat file and press Y there to Lock the folder and press Enter...

Now your Locker will hide and only .bat file will be there.
Double Click on this .bat file and give your password (avhkr) and hit Enter.

That’s it. Now every time you want to open your secret folder you have to enter the password. You can update this folder any time and infinite number of times.
                                                               ENJOY THE TRICK