Wednesday, November 19, 2008

Changing the Internet Explorer Title

Changing the Internet Explorer Title


IE

steps

Start Regedit
Go to HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main\Window Title
Enter what you want appear in the title bar

CHECK UR PC CONFIGRATION

Wan't to know full information about ur computer?


just GOTO
START > RUN
& TYPE

dxdiag


in the run command and see ur computer configuration

LOCK UR DESKTOP ICONS

You have arranged your desktop to look nicely with your wallpaper.
but someone comes and mess up the wau u arrenged it .
so here is a solution to this problem
U CAN LOCK UR DESKTOP ICONS

To lock your desktop icons into place
first arrange it carefully the way you want it to be
then open up the registry editor.
Go to HKEY_CURRENT_USER\Software\Microsoft\Windows\
CurrentVersion\Policies\Explorer.
Right-click in the right pane and select
New, DWORD Value name NoSaveSettings
and press the Enter key.
Right-click on the new NoSaveSettings item and select Modify.
Enter 1 in the Value data box.

After this, whenever you restart Windows, your settings will return to their current state.

Friday, October 3, 2008

Lock any folder, without any software 2

Sometimes you have some data you want to save from your friends, you dont want to use any Folder lock software. Then in that case what will you do?

Well here is a simple solution. Suppose you have a folder “TEST”, and you want to lock it.

Just follow the steps and see the result.

  1. Open a notepad and copy paste the code ; “ren test test.{21EC2020-3AEA-1069-A2DD-08002B30309D}”, without quotes.
  2. Save this file as “loc.bat”.
  3. Open notepad again and paste in the code ; “ren test.{21EC2020-3AEA-1069-A2DD-08002B30309D} test”, without quotes, and save this file as “key.bat”.
  4. Just paste both these files where your folder is located. Run the LOC file and your folder will turn into Control Panel.
  5. To unlock that you need to run the KEY file and everything will become back to normal.

Lock any folder without any software

Default lock any folder without any software

NoTe- Its different from invisble as well hidden folder....here u need to have a password with which u can open your filder

here is the code

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 stuff by satish
echo Enter password to Unlock folder
set/p "pass=>"
if NOT %pass%==TYPE UR 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


Instructions::


1) Copy the give code in a note pad and save the note pad in your pc with the name name.bat (that is with the extension of .bat). you can replace the name portion with anything u want.

NoTe-- In place of password in the code given type your desired password.

2) A batch file will be created where you hav saved. Now double click on it , it will make a folder with the name locker at the same place where the batch file is save.

3) Now add the files you want to be locked in that folder.

4) Double click on the batch file. It will ask for locking the folder formed. Type y(yes). The folder will be locked and hidden.

5) To unlock,double click on batch file again and enter the password in the new window opened.

Sunday, September 28, 2008

How to hide specific drive

This tutorial illustrates how to hide and show your computer drives from Windows XP. You can hide or show as you want both drives in your computer and drives in the computer network. This way can be safe for data in your computer and prevent others from accessing to your drives that may contain important information. This example I will hide drive D and you can apply this method to another drive you want, just change a value that I will explain “how to” in detail. Let you hide drives now.

  • Access to the Registry Editor program, running regedit.
  • Find the path like below,

HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\
Explorer

  • Right click on the Explorer folder and select New > DWORD Value.
  • Name the registry NoDrives.
    NEW DWORD VALUE
  • Double click on NoDrives which is in the right page.
  • In the DWORD Value window, select Decimal.
    Put Value Data under selecting Decimal
  • In this case I want to hide drive D, so I must fill 8 in Value data. The number you filled varies with drive you want it to be hidden. If you want to hide the other drives, you must put the drive-related number like below,

A=1, B=2, C=4, D=8, E=16, F=32, G=64, H=128, I=256, J=512, K=1024, L=2048, M=4096, N=8192, O=16384, P=32768, Q=65536, R=131072, S=262144, T=524288, U=1048576, V=2097152, W=4194304, X=8388608, Y=16777216, Z=33554432, All drive=67108863

For example, I can hide drive J only if I put the number 512 under selecting Decimal. What to do in case I prefer to hide more than one drive ? That is easy just plus the numbers. To illustrate, I want to hide drive C and E so I put the result number of 4 plus 16 that is 20.

  • Click OK button and close the Registry Editor program.
  • Log off and Log on your computer. Finish !