Friday 30 December 2011

*USEFUL COMPUTER TRICKS:

Computer Trick 01

To Delete “Password” set for “Administrator”
  • Take away the hard disc from the computer u want lo log-in.
  • Fit it to another computer as “secondary Bootable Device”.
  • Log in to windows.
  • Go to “windows”→”system32” →”config”.
  • Delete “sam.exe” and “sam.log”.
  • Now shut down that computer and take out the just fitted hard drive.
  • Fit back the hard drive to the computer and log in.
Note: This trick works only when the hard drive is in FAT format.

Computer Trick 02

To View all the cards in windows In-built game “Hearts” you must edit your registry carefully.
  • Go to the “Registry Editor” (“Start” → “Run” → Type “regedit”→ Enter).
  • Go carefully step by step in the left panel as directed below, “HKEY_CURRENT_USER” → ”Software” → ”Microsoft” → ”Windows” → ”Current Version” → ”Applets” → ”Hearts.
  • Right Click on the right panel → “New String value” and name it as “ZB”
  • Open “ZB”. Enter “42″. Close the Registry Editor.
  • Whenever you want to view all the cards in HEARTS, press [Control]+[Alt]+[Shift]+[F12].

Computer Trick 03

To create Nameless Folders,
  • Right click on the folder you want to see nameless.
  • Click on “Rename” option.
  • Holding the [ALT] key press 0160 from the numpad at the right side of your keyboard. (do not type the numbers from the numbers above the character keys).
  • Press Enter. The nameless folder has been created.
  • If you want to create another nameless folder in the same directory, then select another folder and rename as per step three and doing nothing repeat the step three.

Computer Trick 04

To block a website without requiring any software or firefox filters. Just follow the steps,
  • Go to C: WINDOWS → system32 → driversetc.
  • The file named “hosts” with no extension can be found.
  • Open it with Notepad.
  • Reach to the bottom of the page. And locate the line “127.0.0.1 localhost”.
  • Add next line next to that line “127.0.0.1 http://www.ABCD.com/ localhost”. Where ABCD is the site you want to block. Now open the browser and check it.

Computer Trick 05

To Lock Folders without using any type of Software program,
  • Just copy the codes given below,
cls
@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%== PASSWORD 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
  • Paste the copied code in a notepad and change the word “PASSWORD” (in the line, if NOT %pass%== PASSWORD goto FAIL ) with your password which you want to set.
  • Save the file as XYZ.bat where XYZ is any arbitrary name selected by you.
  • A batch file is immediately created where you have saved the XYZ.bat file.
  • A new folder named “Locker” is created here after double clicking the XYZ.bat file.
  • Add the files or folders you want to lock into the newly created folder.
  • Again double click XYZ.bat.
  • Type “Y” or “y”.
  • The locker is locked and hidden.
  • If you want to unlock it, just double click XYZ.bat and enter the password in the appeared window.

No comments:

Post a Comment