answersLogoWhite

0


Best Answer

In order to modify permissions, a user would need to have "Full Control"

User Avatar

Wiki User

13y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

13y ago

domain-based DFS and standalone DFS

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Which NTFS permission allows a user to change the permissions associated with a file?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How to verify the ntfs and folder permissions?

NTFS File Permission Allows the User To Full Control Change permissions and take ownership, plus perform the actions permitted by all other NTFS file permissions Modify Modify and delete the file plus perform the actions permitted by the Write permission and the Read & Execute permission Read & Execute Run applications plus perform the actions permitted by the Read permission Read Read the file, and view file attributes, ownership, and permissions Write Overwrite the file, change file attributes, and view file ownership and permissions


If a folder has 10 subfolders what is the easiest way to change the permission for all 10 folders?

by changing the permissions of the parent folder or main folder, this will change the permissions of all subfolders.


What is the minimum standard NTFS permission required for viewing the ownership and permissions and attributes of a file?

Full Control is needed to change attributes and or permissions of a NTFS folder.


Which permission will you grant a user for a folder he need to be able to create and delete files in if you do not want him to be able to change permissions for the folder?

Write, Access control lists are used to specify the permissions that users will have to resources on the network. The Write permission allows a user to modify folders and files that already exist in the environment as well as create new files and folders as required.


What is the difference between the manage printers permission and the manage documents permission?

Manage Printers - The Manage Printers permission gives users the right to modify the printer's properties and to change the permissions that apply to other users. Manage Documents - The Manage Documents permission allows users to do things such as pause, restart, or delete print jobs.


What happen if a directory permission charged?

It all depends on what you change the permissions to. The directory may become inaccessible, not writeable, or readable, depending on the change.


What is the difference between a share permission and NTFS permission?

Hide Parent PostAuthor: Charles PoffDate: Saturday, August 29, 2009 9:53:33 AM CDTSubject: Week 6 - Module 6 - Files & Folders (2261)What is the primary difference between share permissions and NTFS permissions? Are there any differences in their types of permissions? If so, describe themNote: I am looking to see that you understand the differences in and between the actual permission levels, e.g. Everyone, System, Users, Administrators, etc.Share permissions are the permissions you set for a folder when you share that folder. The share permissions determine the type of access others have to the shared folder across the network. There are three types of share permissions: Full Control, Change, and Read.NTFS permissions determine the action users can take for a folder or file both across the network and locally. Unlike share permissions, NTFS permissions offer several other permissions besides Full Control, Change, and Read that can be set for groups or individually. The most restrictive permission applies when share and NTFS permissions conflict.


What is the name of the utility that will allow you to change the default group associated with group permissions on a Linux file folder?

gerp


If you change a files permissions to chmod 755 in Linux what kind of permissions are assigned to the group that owns the file?

The group has read and execute permissions. The number is octal; the digits pertain to owner, group and all users respectively. The binary representation in three bits of each digit gives read, write and execute permissions respectively. Thus the middle digit, for group permissions, a 5, is binary 101, indicating read and execute but no write permission.


What is the main advantage of creating links to a file instead of copies of the file?

The main advantage is not really that it saves disk space (though it does that too) but, rather, that a change of permissions on the file is applied to all the link access points. The link will show permissions of lrwxrwxrwx but that is for the link itself and not the access to the file to which the link points. Thus if you want to change the permissions for a command, such as su, you only have to do it on the original. With copies you have to find all of the copies and change permission on each of the copies.


How do you change permissions on a shell script in unix?

Use the 'chmod' command to change permissions on any file. Note: you have to be the owner (or the superuser) to do this.


What does chmod 654 stand for?

chmod is a utility that allows you to change the file permissions. The octal value 654 equals to -rw-r-x-r-- (or drw-r-x-r-- if it's a directory). This means that the file owner can read and write to the file (but not execute), users in the file's group can read and execute (but not write), while for everyone else it's read-only.ExplanationThe "read" permission is assigned the value of 4The "write" permission is assigned the value of 2The "execute (program)" permission is assigned the value of 1A "revoked" or "rejected" permission has the value of 0You add these up according to what permissions are granted, except if the permissions for any one of the following categories are revoked or rejected (e.g. 000[probably not practical or possible] = nobody can access the file).There are 3 digits, and the first digit is for owner, the second is for group, while the last one is for all.