Lock File and folder in XP using notepad trick..!!!
Hi All, Windows XP notepad is having very silent features as some we don't know about it. As many times we need to lock our very important files to avoid unauthorized access from other user. So do this here is very simple trick in which you do not need to install any 3rd party software or application in your PC. Just follow below steps to implement this trick:- 1. Open notepad in widows XP. 2. Then after just copy and paste below simple code into notepad. 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 lock...