Cmd command with an encrypted folder

For example, the new one called "University of Finance" folder, I hope contents of this folder is encrypted hidden.

  

When viewing need to click the "University of Finance .bat" file, and then enter the password set.

Cls
@ECHO OFF
title Folder 大学财务
if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
if NOT EXIST 大学财务 goto MDLOCKER
:CONFIRM
echo Are you sure you 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 大学财务 "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=>"
rem 设置密码
if NOT %pass%== 123456 goto FAIL
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" 大学财务
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDLOCKER
md 大学财务
echo 大学财务 created successfully
goto End
:End

 

Last Updated: feasible under Win7, Win10 seems to have problems.

 

Guess you like

Origin www.cnblogs.com/laosan007/p/11834441.html