Wednesday, June 4, 2025

HOW TO - Copy NTFS Permissions

q: On a windows system, how can we copy permissions from one folder to another?

a: With PowerShell using the Get-ACL / Set-ACL commands.  
Get-Acl C:\Windows\System32\LogFiles | Set-Acl D:\Windows\System32\LogFiles

No comments:

Post a Comment