Monday, 3 October 2011

X-labs (some usefull gadgets)


Want to hide your files/folders on Hard Drive/ USB Drives but don't want to install any software?????????
Here is the solution for you.....
Try out this modified version. this works on all versions of Windows 98/2000/XP/Vista/7 and guess what!!!!!!!!
I have added some unique features to it
        1.) Password is hidden while typing.
        2.) Different passwords can be set for different folders.
        3.) You can set your name on title bar to customize the software.
        4.) Works on all versions of Windows 98/2000/XP/Vista/7
        5.) Not easily attacked by virus if placed in root directory ALSO of a HDD/USB drive because its a batch file.
Copy the code on notepad and save the file with any name you want with the extension .bat anywhere on your hard drive



Code:

cls
@ECHO OFF
color AB
title YOUR NAME
if EXIST "My Computer.{20D04FE0-3AEA-1069-A2D8-08002B30309D}" goto UNLOCK
if NOT EXIST Locker goto MDLOCKER
:CONFIRM
mode con:cols=45 lines=2
color A
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 "My Computer.{20D04FE0-3AEA-1069-A2D8-08002B30309D}"
attrib +h +s "My Computer.{20D04FE0-3AEA-1069-A2D8-08002B30309D}"
echo Folder locked
goto End
:UNLOCK
mode con:cols=35 lines=1
::echo Enter password to Unlock folder
set/p "pass=>"
if NOT %pass%==password goto FAIL
attrib -h -s "My Computer.{20D04FE0-3AEA-1069-A2D8-08002B30309D}"
ren "My Computer.{20D04FE0-3AEA-1069-A2D8-08002B30309D}" Locker
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDLOCKER
md Locker
echo Locker created successfully
goto End
:End


Note: Default password is password but you can set your own by editing the batch file in notepad. Just right click on the batch file and click Edit
Find the line
if NOT %pass%==password goto FAIL
and replace the word "password" with a new password


TIPS:
To increase your security here are some tips how to make it more safer
1.) Download the following file Batch to Exe converter
2.) Extract the .rar file with WinRAR or similar software
3.) Run Bat_To_Exe_Converter.exe and convert your batch file to .exe file.
4.) You can also give one more password to open the new .exe file which will make it more secure since now you will be having TWO PASSWORDS which can be different/same.
5.) in the batch file REPLACE ALL the words "Locker" with any other other name you like and you will be having a different locker name which no one will be able to know (not even I, believe ME)!!!!!!

No comments:

Post a Comment