DkmRunningProcessFlags Enum

Definition

Flags containing Boolean properties of the running process.

This enumeration supports a bitwise combination of its member values.

public enum class DkmRunningProcessFlags
public enum class DkmRunningProcessFlags
enum DkmRunningProcessFlags
[System.Flags]
public enum DkmRunningProcessFlags
[<System.Flags>]
type DkmRunningProcessFlags = 
Public Enum DkmRunningProcessFlags
Inheritance
DkmRunningProcessFlags
Attributes

Fields

AppContainer 16

Process is running in AppContainer.

ClrNativeCompilationRuntimeLoaded 64

The runtime used to execute native-compiled .NET Framework code is loaded in the target process. This is computed when DkmRunningProcessInfoPropertyMask.ClrVersions is specified.

DebuggerAttached 2

There is a Win32 debugger attached to the process. This is computed when DkmRunningProcessInfoPropertyMask.BasicInfoFlags is set.

HideFromDefaultProcessList 32

Process should be hidden in the process listing unless the user wants all processes to be shown. This is computed when DkmRunningProcessInfoPropertyMask.FilterFlags is set.

None 0

Default value for DkmRunningProcessFlags.

OtherUser 4

Process is running under a different user account than the debug monitor.

SecurityWarningOnAttach 8

A security warning should be displayed before attaching to this process.

Wow64 1

Process is a 32-bit process running on a 64-bit computer. This is computed when DkmRunningProcessInfoPropertyMask.BasicInfoFlags is set.

Applies to