A.I. Development #1
Hy,
Today I going to show how to install Python & V.S. Code (Visual Studio Code) and how to code python in it. And also I will show you that how to encrypt your folder so that nobody else can open it without your permission.
To Encrypt any folder copy the code given below:-
@ECHO OFF
title Folder Robocodemore
if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
if NOT EXIST Robocodemore goto MDLOCKER
:CONFIRM
echo Are you sure u 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 Robocodemore "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=>"
if NOT %pass%==passwordRobocodemore goto FAIL
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" Robocodemore
echo Folder Unlock successfully
goto End
:FAIL
echo Invaild password
goto End
:MDLOCKER
md Robocodemore
echo Locker created successfully
goto End
:End
Comments