PROCESS_READWRITEVM_LOGGING_INFORMATION union

Stores options for read/write access for telemetry per process.

Syntax

typedef union _PROCESS_READWRITEVM_LOGGING_INFORMATION {
  UCHAR Flags;
  struct {
    UCHAR EnableReadVmLogging  :1;
    UCHAR EnableWriteVmLogging  :1;
    UCHAR Unused  :6;
  };
} PROCESS_READWRITEVM_LOGGING_INFORMATION, *PPROCESS_READWRITEVM_LOGGING_INFORMATION;

Members

  • Flags
    Reserved.

  • EnableReadVmLogging
    Enables or disables read access. Non-zero values enables telemetry, zero disables it.

  • EnableWriteVmLogging
    Enables or disables write access. Non-zero values enables telemetry, zero disables it.

  • Unused
    Do not use.

Requirements

Minimum supported client

Windows 10, version 1709

Minimum supported server

Windows Server 2016

Header

Ntddk.h

 

 

Send comments about this topic to Microsoft