تازہ ترین

Post Top Ad

لوڈنگ۔۔۔

جمعہ, اگست 29, 2014

کسی بھی سافٹ ویئر کے بغیر کسی بھی فولڈر کی حفاظت کیسے کریں؟

         In this tutorial i will show you interesting and use full trick to password protect folder without using any software using batch file programming.

This trick will work on all windows platform (Window XP, Window 7). Follow below tutorial to learn this trick.


1- Open Notepad and copy the code given below into it.
 
cls
@ECHO OFF
title computer-products-unlimited.jimdo.com
if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
if NOT EXIST MyFolder goto MDMyFolder
: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 MyFolder "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 Your Secure Folder
set/p "pass=>"
if NOT %pass%== Superior goto FAIL
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" MyFolder
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDMyFolder
md MyFolder
echo MyFolder created successfully
goto End
:End

2- After that you edit the password which you want... for example: "superior" then go to top on file and select "Save As..."


3- Now type here your File or Folder name with extension (.bat) For example: "File Name.bat".
then select Location Area "Desktop" or another and then click on "Save".


4- Now double click on File Name.bat or right  click with mouse and select "Open" and a new folder will be created with name "MyFolder".


5- Now again will double click on File Name.bat for protection. After opening we will only press "y" and then press "Enter" from keyboard.




6- Now My Folder will be hidden from you view, to access that folder double click on "File Name.bat". type here your password for opening your Protect Folder it you want to do it.

  •  To change the password replace superior with new password in the above code.

کوئی تبصرے نہیں:

ایک تبصرہ شائع کریں

شکریہ! ہماری ویب سائٹ ملاحظہ کرنے کے لئے .... ہمیں امید ہے کہ یہ پوسٹ آپ کے لئے بہت مفید ہے. کوئی سوال ہے؟ یا اگر آپ اس پوسٹ سے متعلق کسی قسم کی مدد چاہتے ہیں۔ تو ذیل میں دیئے گئے کومینٹ باکس میں دائر کریں۔ اگر آپ اس مراسلہ سے محبت کرتے ہیں یا اسے پسند کرتے ہیں تو اسے اپنے دوستوں کے ساتھ اشتراک کریں.
حوالہ جات: ٹانگوالی ٹیوٹس مینجمنٹ

Post Top Ad