Saturday, August 10, 2013

GET A SERIAL KEY OF ANY SOFTWARE(GOOGLE TRICK)


The key 94FBR is a part of Office 2000 Pro CD activation key that is widely distributed as it bypasses the activation requirements of Office 2000 Pro.

By searching for 94fbr and the product name, you are guarantee that the pages that are returned are pages dealing specifically with the product you're wanting a serial for.

 Follow simple steps given below to learn this trick

1. Go to Google

 2. Then type Software Name 94FBR

 Replace Software Name with the name of software whose serial key you want to find Eg: To find serial key of Nero i will type Nero 94fbr 3.

Now press Enter and you will find serial key of software you are looking for as shown below. google trick to find serial key -

HOW TO MAKE A PASSWORD PROTECTED FOLDER WITHOUT ANY SOFTWARE

Recently i made atutorial on how to make undeletable folder but i saw its not a good way to protect your self  that because one could easily delete contects rather than a whole folder so  i came out with this crazy usefull idea on how to make password protected folder without using any software its easy

step 1
open notepad and copy the code below
cls @ECHO OFF title lbtutorials.blogspot.com if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK if NOT EXIST MyFolder goto MDMyFolder :CONFIRM echo Are you sure to lock this 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 MyFolder "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 Your Secure Folder set/p "pass=>" if NOT %pass%== lbtutorials.blogspot.com goto FAIL attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" MyFolder echo Folder Unlocked successfully goto End :FAIL echo Invalid password goto end :MDMyFolder md MyFolder echo MyFolder created successfully goto End :End -

2. Save the notepad file as lock.bat (.bat is must)

3. Now double click on lock.bat and a new folder will be created with name MyFolder

4. Copy all your data you want to protect in that New folder

5. Now double click on lock.bat and when command promp appears Type Y and press enter.

 6. Now MyFolder will be hidden from you view, to access that folde double click on lock.bat

 7. It will ask for password enter your password and done. (Default password is lbtutorials.blogspot.com)

To change the password replace lbtutorials.blogspot.com with new password in the above code