Looking for a free technical support online? You've found it, this site is run completely by volunteers so there is no charge to you.
Let's get started. Check out the modules for chances are, someone else has already had the same problem you have.

Cannot find what you're looking for? Then post your question on this Form. We will contact you as soon as possible via email with the solution to your problem.

The files available for download on this or any server run by Ridgid are provided "as is" and Ridgid can not be held liable for any adverse effects received from using this service.


How to password protect the folder using DOS

Follow these instructions.

First open Notepad and copy the code below then change your password in the code it's shown the place where to type your password. Save file as locker.bat now double click on locker.bat then it will create folder with locker automatically for you. After creation of the locker folder, place the contents you want to lock inside the locker folder and run locker.bat again.

<-Codes to be copied, copy the whole codes.->

cls
@ECHO OFF
title Folder Locker
if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
if NOT EXIST Locker 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 Locker "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 "Password=>"
if NOT %Password%== type your password here goto FAIL
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" Locker
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDLOCKER
md Locker
echo Locker created successfully
goto End
:End

Yes, you can save your private data for free but here is the catch, you can edit your password by right clicking the bat file and select "edit". In order to prevent someone changing your password, try change the file name and extension such as "system.dat". You could also find free or NOT free softwares around for password protecting a folder on your computer, its easy - just follow the instructions. Enjoy and keep safe.

0 comments: