@@ -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
7878msiexec /i "DockerDesktop.msi" /L*V ".\msi.log"
7979```
8080
81- #### Installing interactively without verbose logging
81+ #### Install interactively without verbose logging
8282
8383``` powershell
8484msiexec /i "DockerDesktop.msi"
8585```
8686
87- #### Installing non-interactively with verbose logging
87+ #### Install non-interactively with verbose logging
8888
8989``` powershell
9090msiexec /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
9696msiexec /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
102102msiexec /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
107113You 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
150156msiexec /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
156162msiexec /x "DockerDesktop.msi" /L*V ".\msi.log"
157163```
158164
159- #### Uninstalling interactively without verbose logging
165+ #### Uninstall interactively without verbose logging
160166
161167``` powershell
162168msiexec /x "DockerDesktop.msi"
163169```
164170
165- #### Uninstalling non-interactively with verbose logging
171+ #### Uninstall non-interactively with verbose logging
166172
167173``` powershell
168174msiexec /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
174180msiexec /x "DockerDesktop.msi" /quiet
0 commit comments