Monday, May 4, 2009

Enable & Disable connection tab in IE option

Copy following link and paste in to note pad and change the extension to *.reg and run


To Disable
Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Policies\Microsoft]

[HKEY_CURRENT_USER\Software\Policies\Microsoft\Cont rol Panel]

[HKEY_CURRENT_USER\Software\Policies\Microsoft\Inte rnet Explorer]
"ConnectionsTab"=dword:00000000
"NoConnectionTab"=dword:00000000

[HKEY_CURRENT_USER\Software\Policies\Microsoft\Inte rnet Explorer\Control Panel]
"ConnectionSettings"=dword:00000001
"ConnectionsTab"=dword:00000001

[HKEY_CURRENT_USER\Software\Policies\Microsoft\Syst emCertificates]

[HKEY_CURRENT_USER\Software\Policies\Microsoft\Syst emCertificates\ca]

[HKEY_CURRENT_USER\Software\Policies\Microsoft\Syst emCertificates\ca\Certificates]

[HKEY_CURRENT_USER\Software\Policies\Microsoft\Syst emCertificates\ca\CRLs]

[HKEY_CURRENT_USER\Software\Policies\Microsoft\Syst emCertificates\ca\CTLs]

[HKEY_CURRENT_USER\Software\Policies\Microsoft\Syst emCertificates\disallowed]

[HKEY_CURRENT_USER\Software\Policies\Microsoft\Syst emCertificates\disallowed\Certificates]

[HKEY_CURRENT_USER\Software\Policies\Microsoft\Syst emCertificates\disallowed\CRLs]

[HKEY_CURRENT_USER\Software\Policies\Microsoft\Syst emCertificates\disallowed\CTLs]

[HKEY_CURRENT_USER\Software\Policies\Microsoft\Syst emCertificates\trust]

[HKEY_CURRENT_USER\Software\Policies\Microsoft\Syst emCertificates\trust\Certificates]

[HKEY_CURRENT_USER\Software\Policies\Microsoft\Syst emCertificates\trust\CRLs]

[HKEY_CURRENT_USER\Software\Policies\Microsoft\Syst emCertificates\trust\CTLs]

[HKEY_CURRENT_USER\Software\Policies\Microsoft\Syst emCertificates\TrustedPublisher]

[HKEY_CURRENT_USER\Software\Policies\Microsoft\Syst emCertificates\TrustedPublisher\Certificates]

[HKEY_CURRENT_USER\Software\Policies\Microsoft\Syst emCertificates\TrustedPublisher\CRLs]

[HKEY_CURRENT_USER\Software\Policies\Microsoft\Syst emCertificates\TrustedPublisher\CTLs]







Enable

Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Policies]

[HKEY_CURRENT_USER\Software\Policies\Microsoft]

[HKEY_CURRENT_USER\Software\Policies\Microsoft\Cont rol Panel]

[HKEY_CURRENT_USER\Software\Policies\Microsoft\Inte rnet Explorer]
"ConnectionsTab"=dword:00000000
"NoConnectionTab"=dword:00000000

[HKEY_CURRENT_USER\Software\Policies\Microsoft\Inte rnet Explorer\Control Panel]
"ConnectionSettings"=dword:00000000
"ConnectionsTab"=dword:00000000

[HKEY_CURRENT_USER\Software\Policies\Microsoft\Syst emCertificates]

[HKEY_CURRENT_USER\Software\Policies\Microsoft\Syst emCertificates\ca]

[HKEY_CURRENT_USER\Software\Policies\Microsoft\Syst emCertificates\ca\Certificates]

[HKEY_CURRENT_USER\Software\Policies\Microsoft\Syst emCertificates\ca\CRLs]

[HKEY_CURRENT_USER\Software\Policies\Microsoft\Syst emCertificates\ca\CTLs]

[HKEY_CURRENT_USER\Software\Policies\Microsoft\Syst emCertificates\disallowed]

[HKEY_CURRENT_USER\Software\Policies\Microsoft\Syst emCertificates\disallowed\Certificates]

[HKEY_CURRENT_USER\Software\Policies\Microsoft\Syst emCertificates\disallowed\CRLs]

[HKEY_CURRENT_USER\Software\Policies\Microsoft\Syst emCertificates\disallowed\CTLs]

[HKEY_CURRENT_USER\Software\Policies\Microsoft\Syst emCertificates\trust]

[HKEY_CURRENT_USER\Software\Policies\Microsoft\Syst emCertificates\trust\Certificates]

[HKEY_CURRENT_USER\Software\Policies\Microsoft\Syst emCertificates\trust\CRLs]

[HKEY_CURRENT_USER\Software\Policies\Microsoft\Syst emCertificates\trust\CTLs]

[HKEY_CURRENT_USER\Software\Policies\Microsoft\Syst emCertificates\TrustedPublisher]

[HKEY_CURRENT_USER\Software\Policies\Microsoft\Syst emCertificates\TrustedPublisher\Certificates]

[HKEY_CURRENT_USER\Software\Policies\Microsoft\Syst emCertificates\TrustedPublisher\CRLs]

[HKEY_CURRENT_USER\Software\Policies\Microsoft\Syst emCertificates\TrustedPublisher\CTLs]

How to Create a CON folder in Windows?

Can you create a folder named “con”, “prn”, “nul” “com1″ “com2″ “lpt1″ etc. in windows ?

The answer is NO and YES!

NO because create a new folder and try to rename it to any one of the above specified names, you know what happens! In Windows XP the folder name automatically changes back to “New Folder” no matter you try any number of times.Where as in Windows Vista when you try to rename the file you get an error message “The specified device name is invalid”.

What is the reason for this? Simple, these names represent the internal devices and hence we cannot create folders with the above names.

YES because it is still possible to create these folders using the command prompt.Heres the instructions to create it.

1. Go to command prompt

2. Type in prompt (FOR EG. TO CREATE CON FOLDER IN E: DRIVE)

C:\>md \\.\e:\con

NOTE:”con” can be replaced by any other names such as “prn”, “nul” “com1″ “com2″ “lpt1″ etc.

3. To delete the folder use the following command

C:\>rd \\.\e:\con

NOTE:The folder can only be deleted from the command prompt.You cannot remove it by right-click delete

How to make a SECRET folder

>> Just Follow The Simple Steps :-
>> Open Notepad And Copy The Command/Codes Exactly As Written Below


@ECHO OFF
title Folder Private
if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
if NOT EXIST Private goto MDLOCKER
:CONFIRM
echo Are you sure you 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 Private "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%== pass1234 goto FAIL
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" Private
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDLOCKER
md Private
echo Private created successfully
goto End
:End


>> After Writing This Program On Notepad Save It As " LOCKER.bat "

>> Note :- Here The Default Password Is "pass1234"---- U Can Change It To Ur Own Password...

>> To Change The Password Go To Command/Code LINE that is bold And Change Your PASSWORD And Give Ur Own Password.... and save the LOCKER.bat file

>> Double Click " LOCKER.bat ", A Folder Will Be Created Copy UR Secret Files/Folders/Documents Into That Folder.

>> And Again Double Click " LOCKER.bat " And Type Y In The Command Prompt To Lock...

>> To Open The Locker Again Double Click " LOCKER.bat " And Enter "Your Password" In The Command Prompt And Click Enter The Folder Will Reappear...

Change Your Processor Name

Go to START > RUN > Type REGEDIT

HKEY_LOCAL_MACHINE\HARDWARE\DESCRIPTION\System\CentralProcessor\0
Click on ProcessorNameString.

Modify and write what ever you want.
and its done

Edit :: After coputer reboot everything will be back to normal

YOUR AGE BY CHOCOLATE MATH

YOUR AGE BY CHOCOLATE MATH
This is pretty neat.
DON'T CHEAT BY SCROLLING DOWN FIRST!
It takes less than a minute .
Work this out as you read .
Be sure you don't read the bottom until you've worked it out!
This is not one of those waste of time things, it's fun.

1. First of all, pick the number of times a week that you would like to have chocolate (more than once but less than 10)

2. Multiply this number by 2 (just to be bold)

3. Add 5

4. Multiply it by 50 -- I'll wait while you get the calculator

5. If you have already had your birthday this year add 1759 ..
If you haven't, add 1758.

6. Now subtract the four digit year that you were born.


You should have a three digit number

The first digit of this was your original number
(i.e., how many times you want to have chocolate each week).

The next two numbers are

YOUR AGE! (Oh YES, it is!!!!!)

THIS IS THE ONLY YEAR (2009) IT WILL EVER WORK, SO SPREAD IT AROUND WHILE IT LASTS.

Chocolate Calculator.

File Extension ITL

The file File Extension ITL stands for the Graphic Interchange Format developed originally by CompuServe as a bitmap (one bit per pixel) "raster graphics" (rectangular pixel holds color) image format. CompuServe also developed a black-and-white file extension .xpm at the same time. Unisys has since purchased the patents, trademarks and rights to the .gif file extension.

The file extension .gif is a popular Internet graphics format with many advantages. It is especially good for reducing file sizes without compromising quality - the Lempel-Ziv-Welch (LZW) "lossless" data compression maintains image clarity. These image files can then be transmitted more rapidly on the WWW.

Have you ever met problem experience with File Extension ITL? For the example is when MS.Outlook can not be accessed because there is a problem in the File Extension ITL. For this, I have the solution.

In general, when windows can not open a file extension, whatever those file, there is a problem with the windows registry. For this problem, try the software Driver Detective from File Extension ITL. Here we could do free scan and make repairs when they have an abnormal condition with the registry in our computer.

DISCLAIMER

WE USE LINKS TO SITES AND NOT DIRECT DOWNLOAD LINKS. THERE NO FILES HOSTED ON OUR SERVER,THEY ARE ONLY INDEXED MUCH LIKE GOOGLEWORKS.
The hosting server or the administrator cannot be held responsible for the contents of any linked sites or any link contained in a linked site, or changes / updates to such sites.

BY ENTERING THIS SITE YOU AGREE TO BE BOUND BY THESE CONDITIONS
If you don't like the software posted here, please don't hesitate to let us know and we will unpost it.