Jerold Schulman
Guest
|
Posted:
Thu Dec 22, 2005 5:16 pm Post subject:
Re: Remove certain rights |
|
|
On Wed, 21 Dec 2005 13:46:03 -0800, "Jordy" <Jordy@discussions.microsoft.com> wrote:
| Quote: | Hello
I want to remove a group from the filesystem rights but retain everything
else that is there, (which are different settings)
ie, I want to remove the Administratros group (and only that group) from a
folder and all subfolders, without touching the other rights.
Is that possible ?
Thanks
|
Yes.
If you wanted to remove the Administrators group from the C:\TEMP\test.tmp file:
1. Open a CMD.EXE window.
2. Type
cacls C:\TEMP\test.tmp /E /C /R Administrators
If you wanted to remove the Administrators group from hellp.doc file in your My Documents folder:
1. Open a CMD.EXE window.
2. Type
cacls "%UserProfile%\My Documents\help.doc" /E /C /R Administrators
Jerold Schulman
Windows Server MVP
JSI, Inc.
http://www.jsiinc.com
http://www.jsifaq.com |
|