Changes the security descriptor of a specified item, such as a file or a registry key. Note: This command can only be used through PowerShell. More information: https://learn.microsoft.com/powershell/module/microsoft.powershell.security/set-acl.
$OriginAcl = Get-Acl -Path path\to\file; Set-Acl -Path path\to\file -AclObject $OriginAcl
Get-Acl -Path path\to\file | Set-Acl -Path path\to\file