Make a Locker software by notepad (very simple)

01:02 0 Comments A+ a-

Toady I will show you how to make a locker software by notepad and Keep your secret file in safety.

Follow below steps:

1. Open your notepad.

2. Copy This code

cls
:End
@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%==taichino 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

and paste in notepad and at last save locker.bat (choose any name but extension must be bat)

How to use?

just double click it and a Locker named folder will be created then kept your secret folder in it and finally double click in the software again. A dos message box will be popped up and then press 'y'. Folder software will be vanished in a micro second. 

How to get back the Locker Folder?

To get back the Locker Folder you have to double click in the software(locker.bat file) And you should be asked for password. Enter the password soumen6172(by default I set this) Next hit enter. Then Locker folder will be shown in your desktop.You can access your secret folder now.

By default I set the password "soumen6172",but you can definitely change the password as you like. To change the password you have to find out taichino word from the upper code and replace by your like word and save this with .bat extension.

please share your thoughts