Encrypt the folder contents of the Windows system, the encrypted folder content can only be seen after the password has been entered. First on the code:
CLS
@ECHO OFF
title Folder Private
if EXIST "Locker" goto UNLOCK
if not EXIST Private goto Mdlocker
: CONFIRM
Echo is you sure-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 Private "Locker"
attrib +h +s "Locker"
Echo Folder locked
Goto End
: UNLOCK
echo Enter password to unlock folder
set/p "Pass=>"
if not%pass%== your password goto FAIL
Attrib-h-S "Locker"
ren "Locker" Private
echo Folder Unlocked successfully
Goto End
: FAIL
echo Invalid Password
Goto End
: Mdlocker
MD Private
Echo Private created successfully
Goto End
: End
Copy this code into a text editor, Notepad or editplus text editor, set the password, and save the suffix. bat.
Folder lock and Unlock, repeat the above steps.
Windows folder encryption (Otaku dedicated ... )