From e44cc704896be075e99672ad2891f2622f460bfb Mon Sep 17 00:00:00 2001 From: sarahsanders-docker Date: Wed, 25 Jun 2025 09:17:44 -0400 Subject: [PATCH] desktop: update MSI install commands --- .../enterprise-deployment/msi-install-and-configure.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/manuals/desktop/setup/install/enterprise-deployment/msi-install-and-configure.md b/content/manuals/desktop/setup/install/enterprise-deployment/msi-install-and-configure.md index 1726ca95a041..a377c62c5254 100644 --- a/content/manuals/desktop/setup/install/enterprise-deployment/msi-install-and-configure.md +++ b/content/manuals/desktop/setup/install/enterprise-deployment/msi-install-and-configure.md @@ -99,13 +99,13 @@ msiexec /i "DockerDesktop.msi" /L*V ".\msi.log" /quiet /norestart #### Install non-interactively with admin settings ```powershell -msiexec /i "DockerDesktop.msi" /L*V ".\msi.log" /quiet /norestart ADMINSETTINGS="{"configurationFileVersion":2,"enhancedContainerIsolation":{"value":true,"locked":false}}" ALLOWEDORG="docker" +msiexec /i "DockerDesktop.msi" /L*V ".\msi.log" /quiet /norestart ADMINSETTINGS="{"configurationFileVersion":2,"enhancedContainerIsolation":{"value":true,"locked":false}}" ALLOWEDORG="your-organization" ``` #### Install interactively and allow users to switch to Windows containers without admin rights ```powershell -msiexec /i "DockerDesktop.msi" /L*V ".\msi.log" /quiet /norestart ALLOWEDORG="docker" ALWAYSRUNSERVICE=1 +msiexec /i "DockerDesktop.msi" /L*V ".\msi.log" /quiet /norestart ALLOWEDORG="your-organization" ALWAYSRUNSERVICE=1 ``` #### Install with the passive display option