How to lock a folder on your computer | without any app or software | command prompt
How to lock a folder on my computer | without any app or software | command prompt
#locha #lochasl #rgb #diy #roomdecoration
How to make a nano leaf rgb pannel | diy nano leaf pannel | Rgb pannel එක |
find me on facebook ;
https://www.facebook.com/lochana.fernando.902
Subscribe us https://www.youtube.com/channel/UCqdeIc-JiX_mcIPV6KlEmjA
how to lock a folder on pc.
windows 10
windows 11
windows 7
How to make a nanoleaf pannel
diy nanoleaf pannel
diy rgb pannel
Disclaimer: All opinions are my own and true. Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for "fair use" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use. All Rights Belongs To Their Respective Owners Cont : ...your email... For Any Claim.
Dance, Don't Delay by Twin Musicom is licensed under a Creative Commons Attribution 4.0 license. https://creativecommons.org/licenses/by/4.0/
Source: http://www.twinmusicom.org/song/303/dance-dont-delay
Artist: http://www.twinmusicom.org
✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨❤❤❤❤❤❤❤❤❤❤❤❤
මෙතනින් පල්ලෙහා ඔක්කොම කොපි කරගන්න
@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="
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="
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