icacls 透過指令調整acl權限


參考資料 


測試的示例
C:\code>icacls c:\code\log\ /grant:r "userlab":(OI)(CI)RXM
processed file: c:\code\log\
Successfully processed 1 files; Failed processing 0 files

C:\code>icacls c:\code\log\ /grant:r "userlab":(OI)(CI)RX
processed file: c:\code\log\
Successfully processed 1 files; Failed processing 0 files

使用的參數說明

  • /grant是給權限
  • :r是取代之前的權限(沒加就是用新增上去的)
  • "userlab"是使用者名稱,用雙引號括起來是怕有時候帳號中會有空白
  • (OI)(CI)是權限繼承
  • RX是權限 read and execute
  • M是權限modify

留言

熱門文章