Skip to content

Commit a21a04f

Browse files
authored
desktop msi: add additional example (#22679)
<!--Delete sections as needed --> ## Description We have this flag in the table, but had a request to make more prominent as an example ## Related issues or tickets <!-- Related issues, pull requests, or Jira tickets --> ## Reviews <!-- Notes for reviewers here --> <!-- List applicable reviews (optionally @tag reviewers) --> - [ ] Technical review - [ ] Editorial review - [ ] Product review
1 parent db322b2 commit a21a04f

File tree

1 file changed

+16
-10
lines changed

1 file changed

+16
-10
lines changed

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

Lines changed: 16 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -72,37 +72,43 @@ Non-interactive installations are silent and any additional configuration must b
7272
>
7373
> Admin rights are required to run any of the following commands.
7474
75-
#### Installing interactively with verbose logging
75+
#### Install interactively with verbose logging
7676

7777
```powershell
7878
msiexec /i "DockerDesktop.msi" /L*V ".\msi.log"
7979
```
8080

81-
#### Installing interactively without verbose logging
81+
#### Install interactively without verbose logging
8282

8383
```powershell
8484
msiexec /i "DockerDesktop.msi"
8585
```
8686

87-
#### Installing non-interactively with verbose logging
87+
#### Install non-interactively with verbose logging
8888

8989
```powershell
9090
msiexec /i "DockerDesktop.msi" /L*V ".\msi.log" /quiet
9191
```
9292

93-
#### Installing non-interactively and suppressing reboots
93+
#### Install non-interactively and suppressing reboots
9494

9595
```powershell
9696
msiexec /i "DockerDesktop.msi" /L*V ".\msi.log" /quiet /norestart
9797
```
9898

99-
#### Installing non-interactively with admin settings
99+
#### Install non-interactively with admin settings
100100

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

105-
#### Installing with the passive display option
105+
#### Install interactively and allow users to switch to Windows containers without admin rights
106+
107+
```powershell
108+
msiexec /i "DockerDesktop.msi" /L*V ".\msi.log" /quiet /norestart ALLOWEDORG="docker" ALWAYSRUNSERVICE=1
109+
```
110+
111+
#### Install with the passive display option
106112

107113
You can use the `/passive` display option instead of `/quiet` when you want to perform a non-interactive installation but show a progress dialog.
108114

@@ -150,25 +156,25 @@ IdentifyingNumber Name
150156
msiexec /x {10FC87E2-9145-4D7D-B493-2E99E8D8E103} /L*V ".\msi.log" /quiet
151157
```
152158

153-
#### Uninstalling interactively with verbose logging
159+
#### Uninstall interactively with verbose logging
154160

155161
```powershell
156162
msiexec /x "DockerDesktop.msi" /L*V ".\msi.log"
157163
```
158164

159-
#### Uninstalling interactively without verbose logging
165+
#### Uninstall interactively without verbose logging
160166

161167
```powershell
162168
msiexec /x "DockerDesktop.msi"
163169
```
164170

165-
#### Uninstalling non-interactively with verbose logging
171+
#### Uninstall non-interactively with verbose logging
166172

167173
```powershell
168174
msiexec /x "DockerDesktop.msi" /L*V ".\msi.log" /quiet
169175
```
170176

171-
#### Uninstalling non-interactively without verbose logging
177+
#### Uninstall non-interactively without verbose logging
172178

173179
```powershell
174180
msiexec /x "DockerDesktop.msi" /quiet

0 commit comments

Comments
 (0)