protect folder from misuse

By Koushik Saha on 8.8.08

comments (0)

Filed Under: , , ,

Do you share a computer with other users and want some extra security on your folders? There are two ways to password protect a folder built into Windows XP (for other Windows flavors, there are some freeware/shareware programs out there).

#1 If you have a log in password for your account, this can be used to protect folders from other users. Your hard drive must be formatted using NTFS (which it probably is unless you're dual booting with another operating system). Here's what to do...
Right-click the folder that you want to make private and choose "Properties" (or Alt+Double-click). Go to the "Sharing" tab and check the "Make this folder private" box.Click Apply . If you do not have a password on your account, a box will pop up asking if you want to assign a password. This must be done if you want to make the folder private, so click Yes . You will need to use your password to log on to your computer from then on.

Type in a password then confirm it. Click the "Create Password" button then close the Password window.

Click OK in the Properties dialog box.

Now anyone else logged on to your computer can't access that file without knowing your password.

#2 If the Folder is Zipped you can give it a unique password.

Just double-click the zipped folder. In the top menu select File then click "Add a Password".Type a password into the Password box. Then again in the "Confirm Password" box.Now, you are the only person who can access files in this folder. The folder can be opened allowing the files to be seen, but you are the only one who can access them.


Read d rest...
Create list of all files and folders with a right-click!!

By Koushik Saha on 26.11.07

comments (0)

Filed Under: ,

  1. Create a .bat file
    Open Notepad and copy-paste the following data in it.
    Quote:
    cd %1
    dir /a /b /-p /o:gen >C:\filelist.txt
    start notepad C:\filelist.txt
    You can edit the path to your preference.Now name this file anything you wish and save it anywhere you wish.
  2. Make file visible in right click context menu.
    Open explorer window,Go to Tools>Folder Options..>File types and from the registered file types list,select FOLDER.Click on Advanced>New....In the Action box,type in the name you want in context menu.For e.g. Generate File List..Then click on Browse..,navigate to the .bat file created in step 1 and save the changes.
  3. Congratulations!!
    You are done with the tutorial!!.Now right click any folder and select Generate File Listing.A text file will be created in your C:\ drive [or any path you specified in the .bat file.] called filelist.txt which contains list of all files and sub-folders in the parent folder!


Read d rest...