Recycling

Recycling settings for the application pool.

DatacenterEnterpriseInfrastructureMicrosoftOperating SystemServer ManagementWindows ServerWindows Server 2025

Properties

Name Type Description
disable_overlapped_recycle boolean Whether to disable overlapped recycling.
disable_recycle_on_config_change boolean Whether to disable recycling on configuration changes.
log_events object
periodic_restart object
View JSON Schema on GitHub

JSON Schema

microsoft-windows-server-recycling-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Recycling",
  "title": "Recycling",
  "type": "object",
  "description": "Recycling settings for the application pool.",
  "properties": {
    "disable_overlapped_recycle": {
      "type": "boolean",
      "description": "Whether to disable overlapped recycling.",
      "default": false,
      "example": true
    },
    "disable_recycle_on_config_change": {
      "type": "boolean",
      "description": "Whether to disable recycling on configuration changes.",
      "default": false,
      "example": true
    },
    "log_events": {
      "$ref": "#/components/schemas/RecyclingLogEvents"
    },
    "periodic_restart": {
      "$ref": "#/components/schemas/PeriodicRestart"
    }
  }
}