1

I run a computer training institute. I have deployed 15 N-Computing L300 devices, connected to a single server, an Intel core i7 with Windows 7 Ultimate. The hard drive has 3 partitions.

Along with the administrator account logged in on the server, other standard users are simultaneous logged in on the same server through the remote sessions on N-Computing L300s. I want to password protect the partitions D & E, so that each time any user tries to access the drive, it prompts for the password, although it is opened by the administrator at the same time.

I have tried several softwares like "Folder Lock 7.1", "LockMyDrive 4.0", "Disk Password Protection" etc. They password protect the drive until it is unlocked. Once it is unlocked by the administrator & is in use, it can easily be accessed by other users at that time.

Can anyone suggest me a software which can fulfill my requirements. The same is required for folders as well.

2 Answers2

1

Do each of the remote users (the users logged into the L300s) log in to user accounts on the server machine?

If they do, you could add each of the student accounts to a Studentsgroup,then set permissions on each partition so that the Students group (and thus all the student accounts inside it) are explicitly denied acess to those partitions.

Students attempting to access the partitions will receive an Access Denied error should they attempt to access those partitions.

Creating a Local Group

These instructions assume a workgroup environment (ie. no Active Directory).

  1. Press Windows Logo Key + R to open the Run dialog
  2. type lusrmgr.msc into the Run dialog and click OK
  3. On the left hand side of the Local Users and Groups window right click the Groups folder and choose New Group.
  4. Name the group Students. Enter an appropriate description in the Description field.
  5. Click the Add button to add user accounts to the Students group
  6. In the object names text box enter the user names of each of the student user accounts seperated by a semicolon (;)
  7. Click Check names. If all of the names are correct, the computer name will be appended and they will be underlined as per this screenshot:Local Users and Groups - Select Users dialog with added usernames underlined
  8. Click OK to close the dialog, You should see the added members in the Members list. Click the Close button.
  9. The group has been created. Close Local Users and Groups

Deny Group Access To Pariitions

You'll need to repeat these steps for each partition you want to deny access to

  1. Open Computer
  2. Right click the relevent drive and choose Properties
  3. Click the Security tab
  4. Click the Edit button
  5. Choose Add
  6. Type Students in the "Enter object names to select" textbox
  7. Click OK.
  8. Select the Student group from the "Group or user name" list
  9. Check the "Deny" checkbox next to "Full Control" checkbox. All the other permissions will have their Deny columns checked automatically
  10. Click ok
0

Hi if it's being used as a server the best option would be to encrypt it. This will give you reduced performance but it will be more secure than a simple folder password. Alternatively if you are using it just to access data, why not set it up as an FTP server. This way you can tailor each users/accounts access.

Free Encryption tool: FreeOTFE 5.21

Free FTP Server: https://filezilla-project.org/

Hope this helps

Lelantos
  • 349