Tuesday 14 February 2017

CMD code that use to secure your file/folder with password and hide from others.

1 comment
Hello friends,today i sharing a CMD code that use to secure your file/folder with password, and also you can hide file/folder from others.

In this chapter i show how to create .bat file with code. but try this it on your own risk be careful. try demo with another folder and data before hide or protect original data.

If you lost your CMD file you will loss your data.

Let's Start:

Step1: Open Notepad and Write below code.

@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 your 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
PAUSE
goto end
:MDLOCKER
md Locker
echo Locker created successfully
goto End

:End

Step 2: Now Save file that shown below image:
             Select Save as type : All Files(*.*) Then save it.

Now run your locker.bat file. in this example Password is Type your password.




Follow me Share