Prevent Windows 8 users from accessing Windows 7 files

1

I have set up Windows 7 and Windows 8 dual boot. From Windows 8, users have access to my Windows 7 C:\ drive and all its files, including files in C:\Users\username\ How to take care of this?

Max

Posted 2012-10-27T09:34:07.213

Reputation: 336

Answers

2

You could go to Disk Management (search "Administrative Tools" on the Start Screen in settings, then choose Computer Management, then Disk Management), right-click the Windows 7 drive and choose Change Drive Letters and Paths. Remove all letters from this drive and it will become inaccessible.

DzinX

Posted 2012-10-27T09:34:07.213

Reputation: 4 010

0

Try the following:

  1. Reboot in Windows 7 and log in under an admin account.
  2. Run the command prompt cmd as Administrator.
  3. Type the following commands

    takeown /F C:\Users\user_name /a /r /d y

    cacls C:\Users\user_name /t /g Administrators:F System:F (Type Y and press Enter to the prompt "Are you sure")

    cacls "C:\Users\user_name" /e /t /g "user_name":F

Rakib Ansary

Posted 2012-10-27T09:34:07.213

Reputation: 2 168

0

Just change the security settings. Right click on the folder -> Properties -> Security tab

pratnala

Posted 2012-10-27T09:34:07.213

Reputation: 1 866