How to lock a folder forever even if OS has been changed?

4

I need to use a folder lock software to protect my private folders. But there is a main problem with most of them.
Imagine I installed one of them on my sysem that runs Windows 7. Everything is ok up to now. But if I lose my computer and someone else reinstalls its OS or uses another operating system like Ubuntu on it, files are accessible.

What do I have to do ? Is there any suitable software?

Mohammad Bagher Saberi

Posted 2013-04-27T07:27:09.457

Reputation: 259

1Ever heard of encryption. – ADP – 2013-04-27T12:51:47.207

Answers

23

You are asking the wrong question. A folder is simply a logical construct on a filesystem. A more appropriate question to ask is what filesystem/storage mechanism (which allows folders).

There are probably lots of answers to this question - they will all involve encryption. A good, free, cross-platform answer is "Truecrypt". Truecrypt will allow you to encrypt a physical disk or a file on your existing disk into a virtul disk - which gives you what you want.

davidgo

Posted 2013-04-27T07:27:09.457

Reputation: 49 152

3

Why not use a password protected ZIP file? This is a much simpler solution.

user218473

Posted 2013-04-27T07:27:09.457

Reputation:

Yep, this is the winner from a simplicity standpoint, and it's cheap. Inconvenient if you need to access the folder frequently, but not so bad if it's mainly just an archive. – Daniel R Hicks – 2013-04-27T11:43:35.390

Many ZIP archivers (including Windows Explorer) only support the "ZIP 2.0" encryption algorithm, which is easily broken. Make sure you get one that supports AES. – user1686 – 2013-04-28T13:14:36.410

1

Encryption comes with Windows and one of the "features" is that losing OS means losing data, unless you backup your recovery key.

So all you need to do is to right click on folder and select Properties -> Advanced -> and check "Encrypt contents to secure data", include subfolders and files.

One of the advantages is that you don't need to remember another password, all you have to know is your Windows account password only.

Sedat Kapanoglu

Posted 2013-04-27T07:27:09.457

Reputation: 733

And one of the disadvantages is that it's not very cross-platform; as far as I know, no third-party NTFS drivers support EFS yet. – user1686 – 2013-04-28T13:15:06.820

@grawity: correct but that's even better for what OP asked for. – Sedat Kapanoglu – 2013-04-28T15:01:38.420

0

@davidgo is correct in that encryption is the solution and I agree that Truecrypt's full disk encryption is the ultimate solution.

If you don't want to go to that extent, Axcrypt allows encryption on a file and folder level which too would deny access to your private folder(s) and files from anyone booting to, say a Live-CD as you described.

Axcrypt, unlike Truecrypt, is currently "Windows Only" which is a problem if you need access to your folders/files from other platforms (e.g., Mac OS X or Linux).

f1assistance

Posted 2013-04-27T07:27:09.457

Reputation: 658

2Note that anything short of full-disk encryption risks leaving traces around e.g. in temporary files. Depending on what kind of adversary you are trying to protect against, this may or may not be a problem. – a CVn – 2013-04-27T13:56:22.230