Here's how to update Windows file system permission from the command line, using the icacls
tool that comes with Windows (C:\Windows\System32\icacls.exe
):
icacls ".\folder\*.*" /grant BUILTIN\Users:(RX)
In the example above, it adds Read and Execute permissions to BUILTIN\Users
.
No comments:
Post a Comment