Tips and tricks for "OS"

Tips and tricks for "OS"     ( ios  ,  Android  ,  Windows)

Tuesday 5 July 2016

Lock Folders Using Notepad....


Setp-1 Open Notepad and paste the following program in the notepad,

                                                             "Program"


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 Enter password to Unlock folder
set/p "pass=>"
if NOT %pass%==Type yoru password 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


Step-2 Save the file anywhere in the system with "Filename.bat"


Step-3 After that you get a new file ex- "file name" just open that file and type password.. after that you get one new folder in that folder save your personal data.If you want to hide those data then again open that ex-"file name" folder and type "yes" or "y" to hide that folder.

That's  it....Enjoy..

1 comment: