Hi Zvitam,
Sorry I might not have explained it as well as I should have.
The folder structure is setup as follows
\\SERVER\Folder 1\folder 2\folder 3
No users can modify folder 1 ( which I have done)
I want users to be able to add/delete files and subfikders in folder 2.
And folder 3, Users can do anything they want pretty much, except change permissions ( which I have done)
The problem I have encountered is that I have not been able to setup the deny access to folder 2 only.
Main Topics
Browse All Topics





by: zvitamPosted on 2009-08-23 at 22:13:37ID: 25165720
The answer is to give the user Read, Execute and Write permissions on the folder - allowing them to create files etc but not delete or rename them, then give 'CREATOR OWNER' modify permissions on the folder - this will allow the user to then delete/rename all files and folders created by themselves but not the special folder itself - as they don't own it!
look look /T /E /P "CREATOR OWNER":C SmithJ:WEX /Y
So for example, where SmithJ is the user, and Outlook is the special folder...
MKDIR \\SERVER1\Users\SmithJ
MKDIR \\SERVER1\Users\SmithJ\Out
XCACLS.EXE \\SERVER1\Users\SmithJ /T /E /G Administrators:F SYSTEM:F SmithJ:C /Y
XCACLS.EXE \\SERVER1\Users\SmithJ\Out
Hope that helps,
Zvitam