Skip to content

Commit 0487e93

Browse files
desktop: update MSI install commands (#22918)
## Description Update MSI install commands to use `ALLOWEDORG="your-organization"` instead of `ALLOWEDORG="docker"`, there was issues w/ customers copy pasting the command and not realizing they needed to change the placeholder text ## Related issues or tickets https://docker.slack.com/archives/C06SJCMBD9B/p1750856534927389 ## Reviews - [ ] Technical review - [ ] Editorial review - [ ] Product review
1 parent e8d126c commit 0487e93

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

content/manuals/desktop/setup/install/enterprise-deployment/msi-install-and-configure.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,13 +99,13 @@ msiexec /i "DockerDesktop.msi" /L*V ".\msi.log" /quiet /norestart
9999
#### Install non-interactively with admin settings
100100

101101
```powershell
102-
msiexec /i "DockerDesktop.msi" /L*V ".\msi.log" /quiet /norestart ADMINSETTINGS="{"configurationFileVersion":2,"enhancedContainerIsolation":{"value":true,"locked":false}}" ALLOWEDORG="docker"
102+
msiexec /i "DockerDesktop.msi" /L*V ".\msi.log" /quiet /norestart ADMINSETTINGS="{"configurationFileVersion":2,"enhancedContainerIsolation":{"value":true,"locked":false}}" ALLOWEDORG="your-organization"
103103
```
104104

105105
#### Install interactively and allow users to switch to Windows containers without admin rights
106106

107107
```powershell
108-
msiexec /i "DockerDesktop.msi" /L*V ".\msi.log" /quiet /norestart ALLOWEDORG="docker" ALWAYSRUNSERVICE=1
108+
msiexec /i "DockerDesktop.msi" /L*V ".\msi.log" /quiet /norestart ALLOWEDORG="your-organization" ALWAYSRUNSERVICE=1
109109
```
110110

111111
#### Install with the passive display option

0 commit comments

Comments
 (0)