How to despair & Lock Photos in Windows 10 without Software in 2021

WAY TO Lock Photos in Windows 10

in this article, I have decided to give full information on how to hide and lock pictures on Windows 7,8,10. You can implement this way to hide various types of files like PDF files, Video files, Document Files, etc. Let’s check out.

WAY TO Hide Photos On Windows 7,810 APPLY USING CMD

Windows 10 operating system LET you hide files & folders. For that, you don’t EVEN NEED to install any additional app software, follow the simple steps given below.

πŸ‘‡πŸ‘‡πŸ‘‡πŸ‘‡HERE IS THE FULL EXPLAINED VIDEOπŸ‘‡πŸ‘‡πŸ‘‡πŸ‘‡



Step 1. First of all, right-click inside the folder which you want to hide and select New > Text Document.

Step 2. Name the text file whatever you want. Now paste the below text into the text file.

Step 3. Once done, click on File > Save As. Under the Save as type, select ‘All Files’ and name the file name to ‘Folderlock.bat’

Step 4. Once done, click on the ‘Save’ button.

Step 5. Now double click on the FolderLock file to enable the folder lock.

Step 6. Now you will find a new ‘Locker’ folder. Simply move the files that you want to lock on the Locker folder.

Step 7. Once done, double click on the ‘Folderlock’ file.

Step 8. It will open a command prompt window, just type in ‘Y’ and hit Enter. The Locker folder will disappear.

Step 9. To bring the folder back, double click on the ‘FolderLocker’ and enter the password that you have set.

HERE IS CMD COD πŸ‘‡πŸ‘‡πŸ‘‡πŸ‘‡πŸ‘‡πŸ‘‡πŸ‘‡πŸ‘‡πŸ‘‡πŸ‘‡πŸ‘‡ COPY THAT

@ECHO OFF

if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK

if NOT EXIST Private goto MDPrivate

:CONFIRM

echo Are you sure to lock this 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 "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"

attrib +h +s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"

echo Folder locked

goto End

:UNLOCK 847744

echo Enter password to Unlock Your Secure Folder

set/p "pass=>" 847744

if NOT %pass%== unlock goto FAIL

attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"

ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" Private

echo Folder Unlocked successfully

goto End

:FAIL

echo Invalid password

goto end

:MDPrivate

md Private

echo Private created successfully

goto End

:End



Comments