BackgroundAccessStatus

DesktopOperating SystemUWPWin32Windows

Properties

Name Type Description
status string Current background access status
View JSON Schema on GitHub

JSON Schema

microsoft-windows-10-backgroundaccessstatus-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BackgroundAccessStatus",
  "title": "BackgroundAccessStatus",
  "type": "object",
  "properties": {
    "status": {
      "type": "string",
      "enum": [
        "Unspecified",
        "AllowedSubjectToSystemPolicy",
        "AlwaysAllowed",
        "DeniedBySystemPolicy",
        "DeniedByUser"
      ],
      "description": "Current background access status"
    }
  }
}