English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

I need to create a password protected file on Windows XP home edition so my Mom can't look at what I have in it.

2007-03-13 08:08:30 · 3 answers · asked by kazekage786 1 in Computers & Internet Security

3 answers

On my notebook I right click on the file and encrypt it. It then asks me for the password I want to use to be able to access it. Hope this helps

2007-03-13 08:17:58 · answer #1 · answered by dajackson 1 · 0 0

Download an app called Folder Lock. The app sets permissions on the file so nobody can access it. You have to open Folder Lock and remove the lock on the file by entering a password that you create. The only thing wrong with encrypting a file is that another admin can take ownership of the file and open it anyway.
You can also use a Windows command line utility call cacls and set permissions on the file. Use it in a .BAT file to lock the file and use another .BAT file to unlock it--no password.

lock.bat

@echo off

echo "This will lock the specified file..."

cacls "C:\pathtofile\test.txt" /P YourUserName:N

echo "The file has been locked!"

pause


for the unlock.bat

@echo off

echo "This will lock the specified file..."

cacls "C:\pathtofile\test.txt" /P YourUserName:F

echo "The file has been unlocked!"

pause

Try this on a test text file to see how it works.

2007-03-13 08:12:11 · answer #2 · answered by Anonymous · 0 0

right click on file before opening it
choose properties
choose sharing
check make this folder private
go from there

2007-03-13 09:05:36 · answer #3 · answered by Elvis 7 · 0 0

fedest.com, questions and answers