Showing posts with label Tricks. Show all posts
Showing posts with label Tricks. Show all posts

Remove Virus in XP that Disables "Show Hidden Files"

There is a certain virus that prevents XP users from viewing the hidden files.

The virus meddles with the ’Show hidden files and folders’ option in the Folder Options and the option keeps bouncing back to ‘Do not show hidden files and folders’, despite repeated trials.

Here is how you can set this problem right:

Navigate to the windows registry:
Go to Start menu
Click Run
Type regedit in the text box and then click Enter.

When the Registry Editor opens, perform the following steps:

Go to the following registry key:

Go to HKEY_LOCAL_MACHINE and then open Software.Under this navigate to:

Microsoft -> Windows -> Current Version -> Explorer Then go to Advanced -> Folder -> Hidden -> SHOWALL

Delete the value CheckedValue.

(Its type should be REG_SZ and data should be 2 or 0.)

Modify the value data to 1 (0×00000001).This should enable you to select the ‘Show hidden files and folders’ option without much problem.

How to Remove Autorun Virus from Hard Disk Drives

  1. Open command prompt. Go to Windows, then Run, and type "cmd" . Press enter
  2. Type "cd\" and press enter to get to the root directory of c:\ .
  3. Type "attrib -h -r -s autorun.inf" and press enter.
  4. Type "del autorun.inf" and press enter.
  5. Repeat the same process with other drives, type "d:" and do the same thing. then next "e:".and restart your computer.
  6. Restart your computer and it's done. Enjoy the freedom to open hard drives on a double click.

How to Shutdown PC with timer

Do you know that you can make your PC shutdown at a time u wish to?
How To Make A Shutdown Timer!

********** METHOD # 1 ***************
Right click on your desktop and choose "New=>shortcuts".
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.
Make up a name for the shortcut and you're done.
You can change the icon by right clicking=>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 **************{EASIER THAN THE PREVIOUS ONE}


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: at 11:35 shutdown -s

TO ABORT:
Code:shutdown -a

Reveal the Passwords Hidden Behind Asterisk

) Open the Login Page of any website. (eg. http://mail.yahoo.com)

2) Type your 'Username' and 'Password'.

3) Copy and paste the JavaScript code given below into your browser's address bar and press 'Enter'.


javascript: alert(document.getElementById('Passwd').value);


4) As soon as you press 'Enter', A window pops up showing Password typed by you..!


Note :- This trick may not be working with firefox

Folder Lock Without Any Software

Paste the code given below in notepad and 'Save' it as batch file (with extension '.bat').
Any name will do.
Then you see a batch file. Double click on this batch file to create a folder locker.
New folder named 'Locker' would be formed at the same location.
Now bring all the files you want to hide in the 'Locker' folder. Double click on the batch file to lock the folder namely 'Locker'.
If you want to unlock your files,double click the batch file again and you would be prompted for password.
Enter the password and enjoy access to the folder.


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%==type your password here 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
:End

How to Rename the Recycle Bin

To change the name of the Recycle Bin desktop icon,

go to "run" option type "Regedit" and hit enter

open Regedit and go to:


HKEY_CLASSES_ROOT/CLSID/{645FF040-5081-101B-9F08-00AA002F954E}
and click on "default"change the name "Recycle Bin" to whatever you want (don't type any quotes).

Note: Registry Editor is one of the most sensetive appliction of operating system so please do at your own risk