1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# 将当前的ACL保存到某个文件中。
icacls C:\Windows\Web /save "C:\Web.acl" /t
# 获得所有权
takeown /f C:\Windows\Web /r
# 授予自己完全的控制权
icacls C:\Windows\Web /grant "%USERDOMAIN%\%USERNAME%":(F) /t
# 恢复windows10默认的所有者
icacls c:\Windows\Web /setowner "NT SERVICE\TrustedInstaller" /t
# 从步骤1中创建的文件中还原ACL。请注意,这些ACL是为父目录还原的,所以还原的时候是 C:\Windows 而不是 C:\Windows\Web
icacls C:\Windows /restore "C:\Web.acl"
|