Im having a problem with sharing drive in my office. The problem if we have a computer to share folder so all workers can upload and save file to it. But we want to prevent workers to delete other's files. We tried to deny delete permission from security tab but that disallowed users to rename and save Word documents files. So my question is: How to only allow the user who uploaded the file to shared network drive delete it?
Asked
Active
Viewed 6,359 times
2
-
2Possible duplicate of [Is it possible to grant rename permissions, but not delete, in NTFS?](https://serverfault.com/questions/408572/is-it-possible-to-grant-rename-permissions-but-not-delete-in-ntfs) – Lenniey Jan 31 '19 at 13:19
-
1Try full creator owner full rights applied to files only, and create / read / execute on the folder to all users. – Tim Brigham Jan 31 '19 at 18:26
-
Not a duplicate. The OP wants to allow users to delete and rename their own files, but only their own files. Not the same thing as being allowed to rename files but not to delete them. – Harry Johnston Jan 31 '19 at 22:42
-
Important clarification: do you want to allow *user A* to rename a file belonging to *user B*? – Lenniey Feb 01 '19 at 07:39
3 Answers
1
This is by (NTFS) design. If you rename, you delete the original file on the file system and create a new one with your content but a different name. You won't be able to change that behaviour. Maybe you should rather change your workflows.
Edit: found a similar Q here Is it possible to grant rename permissions, but not delete, in NTFS?

Lenniey
- 5,220
- 2
- 18
- 29
-
This is focusing on the wrong part of the question. The OP doesn't mind if users can delete their own files, they just shouldn't be able to delete other people's files. – Harry Johnston Jan 31 '19 at 22:44
1
I believe I've figured this out. Here's what you need to do:
- Assign all permissions except
Delete
andDelete subfolders and files
(I do not believe you have to Deny them, just don't Allow them) toEveryone
- Assign
Full Control
toOWNER RIGHTS
This will do the following:
- Allow all users to modify all other users' files
- Allow all users to create new files
- Allow all users to delete and rename files that they created (files that they own)
- Prohibit all users from deleting or renaming files that others users created (files that they do not own)

Jim Ryan
- 126
- 1
-3
As per my knowledge, you have to configure special permissions. But in windows Environment you have to give permission for folder, not for files. Otherwise you have to setup FSRM Feature.

serverAdmin123
- 230
- 3
- 18