en-US/about_WindowsAccessControlProcessAccessRule.help.txt

.NAME
    WindowsAccessControlProcessAccessRule
 
.SYNOPSIS
    Ensures one exact explicit process access rule is present or absent.
 
.DESCRIPTION
    The composite key identifies exactly one explicit access control entry on
    a pinned process instance. The target is pinned by process identifier and
    creation time, so a reused identifier fails closed rather than reaching a
    different process. Intended for long-lived process instances; the desired
    state is valid only while that instance lives.
 
.PARAMETER ProcessId
    Key - uint32
    The identifier of the process the rule applies to.
 
.PARAMETER CreationTimeFileTime
    Key - int64
    The creation time of the pinned process instance as a file time. It
    distinguishes the intended process from a later one that reused the
    identifier.
 
.PARAMETER Account
    Key - string
    The principal the rule applies to. An alias is normalized by security
    identifier, so any spelling that resolves to the same principal matches.
 
.PARAMETER ProcessRights
    Key - WindowsProcessRights
    The exact process rights the entry grants or denies.
 
.PARAMETER AccessControlType
    Key - System.Security.AccessControl.AccessControlType
    Whether the entry is an allow or a deny entry.
 
.PARAMETER Ensure
    Write - WindowsAccessControlDscEnsure
    Whether the exact entry must be present or absent. Defaults to Present.
 
.PARAMETER Reasons
    Read - WindowsAccessControlDscReason[]
    Returns why the resource is not in the desired state. Not configurable.