how to hide files on Windows without a software
Craig Bennett II
●▬▬▬▬๑۩۩๑▬▬▬▬▬●
What I used to make my videos: ● Microphone: http://amzn.to/2yF8dUy ● Pop filter: http://amzn.to/2ArPIQu ● Webcam: http://amzn.to/2ydEvSf ● Video editing software: http://amzn.to/2Aq3nrj
I am a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a means for sites to earn advertising fees by advertising and linking to amazon.com ●▬▬▬▬๑۩۩๑▬▬▬▬▬● Donate: http://techreviewsandhelp.com/l2u5
This video will show you how to hide your files with a basic password.
Code:
cls @ECHO OFF title Folder Private if EXIST "HTG Locker" goto UNLOCK if NOT EXIST Private goto MDLOCKER :CONFIRM echo Are you sure you want to lock the folder(Y/N) set/p "cho=(more than)" 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 "HTG Locker" attrib +h +s "HTG Locker" echo Folder locked goto End :UNLOCK echo Enter password to unlock folder set/p "pass=(more than)" if NOT %pass%== PASSWORD_GOES_HERE goto FAIL attrib -h -s "HTG Locker" ren "HTG Locker" Private echo Folder Unlocked successfully goto End :FAIL echo Invalid password goto end :MDLOCKER md Private echo Private created successfully goto End :End
File name: locker.bat ... https://www.youtube.com/watch?v=Q6N6wF_gtVU
109526321 Bytes