Powered by Blogger.
RSS

Computer Trick | Hide Entire Drives Partition Without Registry

Computer Tips and Tricks | Learn Computer for Free

 

Hide Entire Drives Partition Without Registry



Here is a cool technique which hides entire hard disk drives by a simple procedure.
This is the best security tip to be employ against unauthorised users.

1) Go to Start > Run > type "diskpart".
A DOS window will appear with following description.

DISKPART>

2) Then type "list volume"

3) Suppose you want to hide drive E then type "select volume 3"
Then a message will appear in same window { Volume 3 is the selected volume}

4) Now type "remove letter E"
Now a message will come { Diskpart Removed the Drive letter }

sometime it requires to reboot the computer.
Diskpart will remove the letter.

Windows XP is not having capabilty to identify the unknown volume.
Your Data is now safe from unauthorised users.

To access the content of hidden Drive repeat the process mentioned above. But in 4th step replace " remove" by "assign".
It means type "assign letter E".

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS

Make Your own Folder lock to lock Your Private Data | Folder lock without any Software

Make Your Own folder lock without any software, just with the HELP of Windows NOTEPAD.


Copy and Paste the Below Data in new text Document and Save the Document with the Extension .bat i.e avi.bat and Save it.

A new BATCH file will be created where you will save. That Your Folder lock made from notepad. In Begging it will ask for your Password, Type the Password. When you will open that File it create a new FOLDER name with PRIVATE and you can move your data and Save in That Folder You want to hide.



 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




But in Search you can search your Files after all you locked your files because it just hide the Folder not the data. So for just normal hiding you can use it.

Njoy the TRICKS.

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS