How to cancel parent file inheritance 20 for a subfolder

Updated on technology 2024-05-20
22 answers
  1. Anonymous users2024-02-11

    When you set the permissions for a subfolder, you will be prompted to inherit the permissions of the parent folder or cancel them all, and then set the permissions you specify. You've chosen not to inherit parent folder permissions, and you're good to go.

    For example, on a win2003 server.

    There is a "Shared Directory" folder under the D drive"Share a directory"There are folders such as Zhang San, Li Si, Wang Wu and so on.

    The settings to be done now are:

    All people can browse"Share a directory"folders and files, but cannot be deleted, changed, or created.

    Zhang San can only be right"Zhang San"The folder can be fully operated, but it can browse other people's folders, and cannot delete, change, or create new operations on other people's folders.

    And so on. Then the settings are as follows:

    1.Settings"Share a directory"Sharing, the permissions to share should be fully controlled by everyone.

    2.Subdirectory Security Options Remove the option to allow inherited permissions of the parent to propagate to this object and all child objects, and remove all inherited permissions.

    At this point, the subdirectory security options object has been cleared, add the username you need to have full access to, set full control, add everyone, set only the basic permissions to read the run, and list the directory.

  2. Anonymous users2024-02-10

    ntfs) folder properties -security-advanced-

  3. Anonymous users2024-02-09

    It's easiest to drag out of the parent folder.

  4. Anonymous users2024-02-08

    Let's take an example.

    Create a new folder, Properties, Security, Advanced, Change Permissions At this time, inherit from the C drive, remove the tick of "include permissions that can be inherited from the parent of the object", and then the Windows security window appears.

    Select Add to make all users "Not inherited".

    Double-click a user to select the user's permissions.

    Back in Advanced, you can set the owner in the Owner tab.

  5. Anonymous users2024-02-07

    Right-click on Folder - Properties - Security - Advanced - Change Permissions. You can click "Learn about access control and permissions" under the security page. There's a lot of knowledge.

  6. Anonymous users2024-02-06

    There are many possibilities for this, your parent directory may have some compound permissions, or do some permissions that are only applied to the folder, compound permissions mean that although you have given read permission to this user, but you have given deny read permission to another group, and your user happens to belong to this group, so the rejection priority, you naturally have no access to it, or the administrator on the parent directory does not give some users the permission to read, but has other permissions, so you can't access it, Please check whether there are any of the above two situations, and if you have any questions, please ask.

  7. Anonymous users2024-02-05

    It can be achieved, the easiest way is to add a write permission in the subdirectory independently, but if you need the effect of not being able to read and only write, you need to cancel the inheritance of the parent directory, and then give the permission independently, in the folder right-click - share and security - advanced - uncheck allow the inheritance permission of the parent to spread to the object and all child objects, pop up the dialog box to select delete, and then add the corresponding user rights again, I hope my answer is helpful to you.

    Our legion: Helping others as the foundation, and meeting members with this group.

  8. Anonymous users2024-02-04

    OK. The file server can choose not to inherit the permissions, or assign the permissions separately, and each folder can be assigned independent operation permissions.

  9. Anonymous users2024-02-03

    The method and detailed operation steps are as follows:

    1. In the first step, win+r opens the "Run" dialog box, enter cmd, and then click the "OK" button, see the figure below, go to the steps below.

    2. In the second step, after completing the above steps, select the drive letter of the folder that needs to be deleted, such as d drive, then enter d:, see the figure below, go to the steps below.

    3. Step 3, after completing the above steps, enter the delete command "rd" and OK, see the figure below, go to the steps below.

    4. Step 4, after completing the above steps, enter the path and name of the folder you want to delete, see the image below, go to the steps below.

    5. Step 5, after completing the above steps, the folder has been deleted in drive D, see figure below. In this way, the problem is solved.

  10. Anonymous users2024-02-02

    At first glance, this is a simple question, but it is actually necessary to understand the whole process, for example, considering the logical structure of the folder.

    In fact, I personally think that it is better to use manual, to make a bat batch, but it is troublesome, to take into account some loops, if you can, I can introduce my own method manual and bat batch:

    cd folder name.

    del /s/f/q *.

    dir /b

    cd ……rem loop the above steps into a subfolder to proceed to the del instance: manually.

    For example, I have a folder file in my D drive

    There are some files and subfolders file1, file2, file3 solution: start key +r enter cmd

    d:cd file

    del /s/q/f *.

    cd file1

    del /s/q/f *.

    cd ../file2

    del /s/q/f *.

    cd ../file3

    del /s/f/q *.

    If you want to use batch processing, you also need to know the original folder location

    For example, the location of that folder is: d: file

    Then you can process it as a bat file like this.

    rem del handles d: file

    d:cd d:\file

    del /f/s/q *.

    cd d:\file

    del /f/s/q */*.*

    cd d:\file

    del /f/s/q */*/*.*

    cd d:\file

    del /f/s/q */*/*/*.*

    And so on.

  11. Anonymous users2024-02-01

    Open cmd

    Then switch to your desktop.

    Suppose you want to delete the folder.

    It's called somefolder

    Then you enter.

    rd/sqsomefolder

    Just get in.

  12. Anonymous users2024-01-31

    rd/s/q

    Folder name. If it's a read-only attribute, use attrib

    s-r folder name to remove the read-only attribute!

  13. Anonymous users2024-01-30

    Go to command line mode, go to the folder, del

    *deltree

    Folder name.

  14. Anonymous users2024-01-29

    Go to the folder del*

    cd..Exit the 3rd folder again.

    Or deltree deletes the folder and all the files under it.

  15. Anonymous users2024-01-28

    The deltree folder name is on the line.

  16. Anonymous users2024-01-27

    Enter help in DOS to see all **.

  17. Anonymous users2024-01-26

    Batch processing is simple.

    I do this batch even if there are more than just folders. doc and. jpg is also useful.

    Will del .

    dir /a:d /b /s .> save as and put it in the root folder.

    will be for f"delims=" %%i in ( do md "%%i"

    del is stored in the parent folder of the root folder.

    Run to get the folder directory, then delete the root folder, and then run to recreate all folders.

  18. Anonymous users2024-01-25

    Run the following command to view the help information and pay attention to the use of the s parameter

    For example, delete all subdirectories in directory a. jpg file, but not destroy the folder method.

    Input:"del a\*.jpg /s"(without quotes) that is, Windows XP does not have the "Deltree" command to delete all the files in the A directory including the subdirectories, and clear the folder.

    Input:"del a /s /x"(excluding quotation marks) to delete all files in directory A, including subdirectories, without deleting the folder.

    Input:"del a /s"(excluding quotation marks) to delete all empty folders in the A directory including subdirectories.

    Input:"del a /a:d /s /x"(excluding quotation marks).

  19. Anonymous users2024-01-24

    1. Open the sharing and security of C drive (or D drive, E drive, etc.), there is no "1. Allow the inheritance permission of the parent to spread to the object and all child objects", because C drive, D drive, and E drive are the root directory and have no parent. 2

  20. Anonymous users2024-01-23

    You can only set permissions for each folder individually.

    When copying and copying, permissions are inherited.

  21. Anonymous users2024-01-22

    Add the current user or administrators to the audit.

  22. Anonymous users2024-01-21

    Creating the subfolders you need to share within the home directory you need to share will solve the problem.

Related questions
7 answers2024-05-20

Remove Hide Protected System Files and take a look.

6 answers2024-05-20

Go to the "Command Prompt" and use the "attrib" command, remove the relevant attributes, and try again. >>>More

28 answers2024-05-20

There may be executable programs in the folder.

6 answers2024-05-20

At present, the most used, the best evaluation of encryption software, is Feng Yuanzheng's endorsement of the "stealth man", permanently free, support a variety of win systems, can be in hard disks, mobile hard disks, U disks, ***, etc. to create a confidential space, from regular manufacturers, compared with personal software, more professional and formal. >>>More

7 answers2024-05-20

You have a firewall, and you can't be controlled.

If it's a hidden file, the upstairs said. >>>More