Posts

Showing posts from August, 2017

Set Auditing on System Files and Folders with PowerShell

Image
It's easy to set auditing on files and folders using GUI. But imagine if you need to perform this operation on hundreds of servers. PowerShell is your friend in this case! This article discusses specifics of applying auditing changes on system files and folders (e.g.: C:\Windows, C:\windows\system32\winload.exe). Usually local admin has no write access for these files. Standard approach of using Set-Acl cmdlet is not working with system files or folders. You might get  UnauthorizedAccessException and you'll see an error: "Set-Acl : Attempted to perform an unauthorized operation." This bug has been reported to Microsoft, but still not fixed. In the meantime for such cases I created the following function: function Set-AuditFail # Enable Auditing on the file or folder, with the following specifications. Name: Everyone; Access: Failed for all listed accesses  {    param([String]$TargetFolder)    $ACL = Get-Acl -Path $TargetFolder -Audit    If (($ACL.AuditToString