Thursday, October 6, 2011

Cool Tricks for Computer Users

1. Running Multiple Instance of GTalk.

Right click on the Google Talk shortcut.       
  1. On the right click contextual menu, click on Properties.
  2. Go to Shortcut tab on Google Talk Properties window.
  3. On the Target textbox, add in the /nomutex to the end of the line so that it looks like below (or you can simply copy and paste the below syntax and replace the original) Target: "C:\Program Files\Google\Google Talk\googletalk.exe" /nomutex
  4. Click on OK.
2. Run Firefox inside Firefox
  • copy paste following url in a web browser (mozilla firefox). chrome://browser/content/browser.xul
3. Folder Lock Using Dos Commands.
  • 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

4. PDF File Speak
  • This is not a trick . This is the functionality of Adobe Reader 7.0 through the latest 9.3.
  • go to View>Read out Loud> Activate Read Out Loud.
5. Calculation on  Command Prompt.
  • The command processor CMD.EXE comes with a mini-calculator that can perform simple arithmetic on 32-bit signed integers:                                                                  
    C:\>set /a 2+2                                                                                                                                   
    4                                                                                                                                                       
    C:\>set /a 2*(9/2)                                                                                                                                 
    8                                                                                                                                                         
    C:\>set /a (2*9)/2                                                                                                                                    
    9                                                                                                                                                   C
    :\>set /a "31>>2"                                                                                                                                 
    7                                                                                                                                                    
    Note that we had to quote the shift operator since it would otherwise be misinterpreted as a "redirect stdout and append" operator.
    For more information, type set /? at the command prompt.
6. Create Nameless File and Folders.

  • This trick will allow you to create files and folders without any name.Just follow the steps as given below :-
  1. Select any file or folder.
  2. Right click on it, select 'Rename' or simply press 'F2'.
  3. Press and hold the 'Alt' key. While holding the Alt key, type numbers '0160' from the numpad.                                                                                                                                      Note :- Type the numbers '0160' from the numpad, that is, the numbers present on the right side of the keyboard.Don't type the numbers which are present on top of the character keys.
  4. Press Enter and the nameless file or folder will be created.
  • Reason :- The file or folder that seems nameless is actually named with a single space.

  • But what if you want to create another nameless file or folder in the same directory ?For this you will have to rename the file with 2 spaces.Just follow the steps given below 
  1. Select file, Press 'F2'.
  2. Hold 'Alt' key and type '0160' from the numpad.
  3. Release the 'Alt' key. Now without doing anything else, again hold 'Alt' key and type '0160'.
  4. Press 'Enter' and you will have second nameless file in the same directory.
  5. Repeat step 3 to create as many nameless files or folders in the same directory.

0 comments:

Post a Comment