Set files & folders permission trong windows nhanh trong trường hợp bị Permission denied với admin
Nhập vào bằng Powershell $acl = Get-Acl \\fs1\shared\sales $AccessRule = New-Object System.Security.AccessControl.FileSystemAccessRule(“ENTERPRISE\T.Simpson”,”FullControl”,”Allow”) $acl.SetAccessRule($AccessRule) $acl | Set-Acl \\fs1\shared\sales