To change the permission of a NTFS file:

#Add / Change NT Permissions
############################# get current permissions
$acl = Get-Acl -Path <FileName>#SID from NT AUTHORITY\SYSTEM
$SidString = ‚S-1-5-18‘

# add a new permission
$permission = [System.Security.Principal.SecurityIdentifier] $SidString, ‚FullControl‘,’Allow‘
$rule = New-Object -TypeName System.Security.AccessControl.FileSystemAccessRule -ArgumentList $permission
$acl.SetAccessRule($rule)

# set new permissions
$acl | Set-Acl -Path <FileName>

 

 

Schreibe einen Kommentar

Deine E-Mail-Adresse wird nicht veröffentlicht. Erforderliche Felder sind mit * markiert

I accept that my given data and my IP address is sent to a server in the USA only for the purpose of spam prevention through the Akismet program.More information on Akismet and GDPR.