ProcessOrphaning

Process orphaning settings that control behavior when a worker process cannot be shut down gracefully.

DatacenterEnterpriseInfrastructureMicrosoftOperating SystemServer ManagementWindows ServerWindows Server 2025

Properties

Name Type Description
enabled boolean Whether process orphaning is enabled.
orphan_action_exe string The path to an executable to run when a worker process is orphaned.
orphan_action_params string Parameters for the orphan action executable.
View JSON Schema on GitHub

JSON Schema

microsoft-windows-server-processorphaning-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ProcessOrphaning",
  "title": "ProcessOrphaning",
  "type": "object",
  "description": "Process orphaning settings that control behavior when a worker process cannot be shut down gracefully.",
  "properties": {
    "enabled": {
      "type": "boolean",
      "description": "Whether process orphaning is enabled.",
      "default": false,
      "example": true
    },
    "orphan_action_exe": {
      "type": "string",
      "description": "The path to an executable to run when a worker process is orphaned.",
      "example": "example_value"
    },
    "orphan_action_params": {
      "type": "string",
      "description": "Parameters for the orphan action executable.",
      "example": "example_value"
    }
  }
}