I'm trying to prevent folders moves, really folder delete in NTFS parlance, for series of folders within a network share.

So let's say I have: FolderA, FolderB, FolderC. Each folder has various files and subfolders. I want the Domain Users group to have modify access to all files and folders beneath FolderA, FolderB, and FolderC. However I don't want them to be able to delete these three top level folders.

The issue we are having right now is people keep accidentally dragging one top level folder into another.

I've tried used advanced NTFS permissions to deny domain users delete access to these top level folders, and set the permissions to apply to "This folder only", however it seems to only affect sub-folders, and not the top level.

Platform is Server 2008 Standard.

Thanks in advance.

link|improve this question
Have you tried doing that to the parent folder of the FolderA, B and C? – Nixphoe Aug 10 '11 at 20:16
1  
A folder move (within the same drive) is not a "folder delete in NTFS parlance", it's a rename. – John Gardeniers Aug 10 '11 at 21:41
feedback

2 Answers

"Deny" is usually the wrong tool for the job and is a sign that your permission hierarchy is upside-down.

Rather than denying permissions, grant "Domain Users" the "List Folder Contents" permission on "This Folder Only" and "Modify" on "Subfolders and Files". This will allow them to list the contents of the top level folder but will not allow them to delete it. They will still be able to modify subfolders and files within the top level folder and subfolders. This assumes that "Domain Users" isn't inheriting excessive rights from a parent folder, though. If they are then you're going to need to stop permission inheritance (which makes me cry inside).

link|improve this answer
Sigh, every time inherit is disabled 6 months later someone in a new group has rights issues. But I don't see any way around it. – Mark Henderson Aug 10 '11 at 20:58
@Mark Henderson: Novell's filesystem had it right with "inherited rights filters". I never did like much else about Novell products (and have a particular distaste for "FIRE PHASERS" and anyone who would use it) but I'd love it if NTFS had that kind of functionality. – Evan Anderson Aug 10 '11 at 21:03
feedback

Under advanced permissions you need to grant "Delete Sub-folders and Files" permissions on your top level folders to "Domain Users".

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.