Summary
NTFS permissions, as a means of file access control, have been widely used by administrators. On the enterprise's file server, when the file is more, and NTFS permissions are configured more complex, how to easily and quickly view the effective permissions of users, and gradually become IT administrators need to consider the issue, this article introduces several convenient ways to view and export, you can choose according to the needs.
Body
Through our lectures and project experience, the common set of scenarios for viewing NTFS permissions in the enterprise are as follows: View the effective permissions of a user, view NTFS permissions associated with an object, bulk view NTFS permissions on an object, and export NTFS permissions for an object to text. The following methods are given for these requirements.
1. View effective permissions for a user
Can be achieved through the graphical interface:
Find the object you want to see, right-click, select Properties, click the Advanced button in the "Security" tab, and then click on the "Effective Permissions" tab, enter the user or group you want to query to see the user or group's effective permissions on the object, the effect of the following figure:
Back to the column page: http://www.bianceng.cnhttp://www.bianceng.cn/OS/skills/
2. View NTFS permissions associated with an object
You can view NTFS permissions associated with an object by using command-line tools, such as viewing NTFS permissions associated with D:\acl-test.txt, by using the following command:
cacls D:\acl-test.txt
3. Bulk view NTFS permissions for objects
PowerShell provides us with a very rich volume management function, for example, to get the effective permissions of all text documents under the C:\test\ folder, you can make the following command:
Get-acl C:\test\*.txt