Skip to content

Instantly share code, notes, and snippets.

@jdgregson
Last active January 11, 2022 02:36
Show Gist options
  • Save jdgregson/b736079a9296b038620282c3831bfca5 to your computer and use it in GitHub Desktop.
Save jdgregson/b736079a9296b038620282c3831bfca5 to your computer and use it in GitHub Desktop.
Copy an ACL from one file to another in PowerShell
Set-Acl -Path new.txt -AclObject (Get-Acl -Path old.txt)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment