From 57ed7f6257c407b192f84e22f9ea8cccfedd68e4 Mon Sep 17 00:00:00 2001 From: Codex Date: Wed, 6 May 2026 09:15:56 +0200 Subject: [PATCH] docs: map admin states to JSON settings (closes #24969) The Admin Console state descriptions did not explain how on/off states translate to admin-settings.json fields. Added a scoped mapping table for on/off settings so administrators can compare Admin Console policies with JSON configuration. Co-Authored-By: Codex oreply@openai.com> --- .../settings-management/configure-admin-console.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/content/manuals/enterprise/security/hardened-desktop/settings-management/configure-admin-console.md b/content/manuals/enterprise/security/hardened-desktop/settings-management/configure-admin-console.md index bc056c581602..87e329a562f0 100644 --- a/content/manuals/enterprise/security/hardened-desktop/settings-management/configure-admin-console.md +++ b/content/manuals/enterprise/security/hardened-desktop/settings-management/configure-admin-console.md @@ -55,6 +55,16 @@ To create a new settings policy: - **Always disabled**: Setting is off and locked. - **Disabled**: Setting is off but can be changed. + For on/off settings, Admin Console states correspond to `admin-settings.json` values as follows: + + | Admin Console state | JSON equivalent | + | :------------------ | :---------------------------------- | + | **User-defined** | Omit the setting | + | **Always enabled** | `"locked": true`, `"value": true` | + | **Enabled** | `"locked": false`, `"value": true` | + | **Always disabled** | `"locked": true`, `"value": false` | + | **Disabled** | `"locked": false`, `"value": false` | + > [!TIP] > > For a complete list of configurable settings, supported platforms, and configuration methods, see the [Settings reference](settings-reference.md).