Friday, December 24, 2010

FIND SERIAL NUMBER OF A SOFTWARE


Today there are many people out there who still prefer to use pirated software. It’s especially common among users who live outside the U.S. When you download your program or game you might need the serial to remove the trial period. Blindly searching the web for cracks and keygens is about as smart as using Limewire to search for antivirus software – something not well-advised. Undoubtedly and unfortunately, the number of crack sites with overtones of a malicious agenda heavily outweighs sites that just want to serve up the honest goods. Having said that, there actually are quite a few creditable ‘crack’ sites that won’t try to bombard you with full-screen popup ads, or commandeer your computer into a spam-loving Kraken or Srizbi Botnet army. Here I want to present you a list of “clean” crack sites for all the latest warez to unlock your software.

Please note that the site reviews herein only include information about each site, not the contents of the ‘cracks’ themselves. Always use a reputable antivirus and antispyware program on cracks & keygens before using them.

Here is my list of Safe and Malicious Crack/KeyGen Sites:
www.productkeys.tk
www.smartserials.com
www.serialkey.net
www.zcrack.com
www.serialportal.com
www.serialcrackz.com
www.serials.be
www.cracktop.com
www.cracksfm.com
www.crackdb.org
http://www.cracksearchengine.net/

Monday, December 20, 2010

CHANGE THE WINDOWS 7 LOGON SCREEN BACKGROUND


How would you like to change the logon screen background in Windows 7 so as to give your Windows a customized look and feel? With a small tweak it is possible to customize the Windows 7 logon screen and set your own picture/wallpaper as the background. Changing logon screen background in Windows 7 is as simple as changing your desktop wallpaper. Well here is a step by step instruction to customize the logon screen background.

STEP – 1
The image you need to set as the background should be a .jpg file and its size should not exceed 245KB.

STEP – 2
The image resolution can be anything of your choice. However I prefer 1440 x 900 or1024 x 768. You can use any of the photos editing software such as Photoshop to compress and set the resolution for your image. Once you’re done, save this image asbackgroundDefault.jpg.

STEP – 3
You will need to copy this image to
C:\Windows\system32\oobe\info\backgrounds
You will need to create that path if it does not already exist on your computer.

STEP – 4
Now open the Registry Editor (Start -> Run -> Type regedit) and navigate to the following key

HKLM\Software\Microsoft\Windows\CurrentVersion\Authentication\ LogonUI\Background

If Background does not exist right click LogonUI, select New and then Key, and then name it Background. Now locate OEMBackground (listed on the right side). If it does not exist, right-click Background and select New and then DWORD and name it OEMBackground.

STEP – 5
Double-click on OEMBackground and set the Value Data to 1.

STEP – 6
Now log-off to see the new logon screen background. If you would like to revert back to the default background, just set the Value Data back to 0.

Monday, December 13, 2010

FOLDER LOCK WITHOUT ANY SOFTWARE


Today, I’m going to explain to you, how you guys can lock your personal folder without any special software.

Step 1:
Paste the code given below in notepad and 'Save' it as batch file (with extension '.bat'). You can use any name to save it. 

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

Step 2:
Now you can see a batch file in saved location. Double click on this batch file to create a folder locker. New folder named 'Locker' would be formed at the same location. 

Step 3:
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'

Step 4:
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.