PROCESS_MITIGATION_REDIRECTION_TRUST_POLICY structure (winnt.h)

Contains process mitigation policy settings for RedirectionGuard.

Syntax

typedef struct _PROCESS_MITIGATION_REDIRECTION_TRUST_POLICY {
  union {
    DWORD Flags;
    struct {
      DWORD EnforceRedirectionTrust : 1;
      DWORD AuditRedirectionTrust : 1;
      DWORD ReservedFlags : 30;
    } DUMMYSTRUCTNAME;
  } DUMMYUNIONNAME;
} PROCESS_MITIGATION_REDIRECTION_TRUST_POLICY, *PPROCESS_MITIGATION_REDIRECTION_TRUST_POLICY;

Members

DUMMYUNIONNAME

DUMMYUNIONNAME.Flags

Reserved for system use.

DUMMYUNIONNAME.DUMMYSTRUCTNAME

DUMMYUNIONNAME.DUMMYSTRUCTNAME.EnforceRedirectionTrust

Set (0x1) to prevent the process from following filesystem junctions created by non-admin users and log the attempt; otherwise leave unset (0x0).

DUMMYUNIONNAME.DUMMYSTRUCTNAME.AuditRedirectionTrust

Set (0x1) to log when the process follows filesystem junctions created by non-admin users, but still allow the operation; otherwise leave unset (0x0).

DUMMYUNIONNAME.DUMMYSTRUCTNAME.ReservedFlags

Reserved for system use.

Remarks

The GetProcessMitigationPolicy and SetProcessMitigationPolicy functions use this structure.

Requirements

Requirement Value
Minimum supported client Windows 8.1 [desktop apps only]
Minimum supported server Windows Server 2012 [desktop apps only]
Header winnt.h