From 6f18550be97b70d12a27046d1c8acc1c72f055b2 Mon Sep 17 00:00:00 2001 From: Louis-Arnaud Catoire Date: Mon, 4 May 2026 15:35:03 +0200 Subject: [PATCH 1/2] docs: include registry key structure in Group Policy deployment step The Group Policy deployment tab previously instructed administrators to "Create a registry script with the required key structure" without documenting that structure, forcing them to switch to the Manual setup tab. Adding the key, value name, and value data inline so the Group Policy procedure is self-contained. Closes #24946 --- .../manuals/enterprise/security/enforce-sign-in/methods.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/content/manuals/enterprise/security/enforce-sign-in/methods.md b/content/manuals/enterprise/security/enforce-sign-in/methods.md index 6d216b024525..223f51590a2f 100644 --- a/content/manuals/enterprise/security/enforce-sign-in/methods.md +++ b/content/manuals/enterprise/security/enforce-sign-in/methods.md @@ -51,7 +51,10 @@ To configure the registry key method manually: Deploy the registry key across your organization using Group Policy: -1. Create a registry script with the required key structure. +1. Create a registry script with the following structure: + - Key: `HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Docker\Docker Desktop` + - Value name: `allowedOrgs` (multi-string) + - Value data: Your organization names, one per line, in lowercase only. 1. In Group Policy Management, create or edit a GPO. 1. Navigate to **Computer Configuration** > **Preferences** > **Windows Settings** > **Registry**. 1. Right-click **Registry** > **New** > **Registry Item**. From 09eca7269d46e7ee5a2cf3816a632b3532684682 Mon Sep 17 00:00:00 2001 From: Louis-Arnaud Catoire Date: Mon, 4 May 2026 15:38:34 +0200 Subject: [PATCH 2/2] Align with sibling step terminology and punctuation Use 'Path:' instead of 'Key:' to match the wording used in the existing GPO Registry Item configuration step (and the GPO Management Console UI), and drop the trailing period to match the punctuation style of the same step. --- .../manuals/enterprise/security/enforce-sign-in/methods.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/manuals/enterprise/security/enforce-sign-in/methods.md b/content/manuals/enterprise/security/enforce-sign-in/methods.md index 223f51590a2f..4e15fabebae6 100644 --- a/content/manuals/enterprise/security/enforce-sign-in/methods.md +++ b/content/manuals/enterprise/security/enforce-sign-in/methods.md @@ -52,9 +52,9 @@ To configure the registry key method manually: Deploy the registry key across your organization using Group Policy: 1. Create a registry script with the following structure: - - Key: `HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Docker\Docker Desktop` + - Path: `HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Docker\Docker Desktop` - Value name: `allowedOrgs` (multi-string) - - Value data: Your organization names, one per line, in lowercase only. + - Value data: Your organization names, one per line, in lowercase only 1. In Group Policy Management, create or edit a GPO. 1. Navigate to **Computer Configuration** > **Preferences** > **Windows Settings** > **Registry**. 1. Right-click **Registry** > **New** > **Registry Item**.