Share via


DkmProcessLaunchModeFlags Enum

Definition

Flag traits of a DkmProcessLaunchRequest.

This enumeration supports a bitwise combination of its member values.

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

Fields

Name Value Description
None 0

No launch flags are set.

NoDebug 1

Launch the process without debugging (Ctrl+F5).

EnableENC 2

Launch the process with Edit and Continue enabled.

MergeEnvironment 4

Merge DkmProcessLaunchRequest.Environment with the environment block of the monitor. If this flag is missing and DkmProcessLaunchRequest.Environment is specified then the processed will be launched with only environment variables from the input block.

StandardOutputToOutputWindow 8

Redirect the standard output and standard error of the process to the output window.

IntegratedConsole 16

Launch in the integrated console.

SingleUseIntegratedConsole 32

Launch in the integrated console with the console configured to exit when the process ends.

UseIntegratedTerminalService 64

Launch using the integrated terminal service.

Applies to