答案1
Windows 带有一个特殊的命令行实用程序,称为CACLS
。
您可以按如下方式使用它:
CACLS files /e /p {USERNAME}:{PERMISSION}
在哪里,
* /p : Set new permission
* /e : Edit permission and kept old permission as it is i.e. edit ACL instead of replacing it.
* {USERNAME} : Name of user
* {PERMISSION} : Permission can be:
o R - Read
o W - Write
o C - Change (write)
o F - Full control
例如使用以下命令授予 Betty 完全(F)控制权(在 Windows 命令提示符下输入):
C:> CACLS files /e /p betty:f
通过输入以下命令来阅读完整的帮助:
C:> cacls /?