Windows 7 中的文件权限更改

Windows 7 中的文件权限更改

可能重复:
从命令提示符更改 Windows 7 文件权限

如何使用命令更改 Windows 7 中的文件权限?

答案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 /?

答案2

您可以使用承担命令。

请参阅以下文章:

微软

七大论坛

相关内容