Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -72,37 +72,43 @@
>
> Admin rights are required to run any of the following commands.

#### Installing interactively with verbose logging
#### Install interactively with verbose logging

```powershell
msiexec /i "DockerDesktop.msi" /L*V ".\msi.log"
```

#### Installing interactively without verbose logging
#### Install interactively without verbose logging

```powershell
msiexec /i "DockerDesktop.msi"
```

#### Installing non-interactively with verbose logging
#### Install non-interactively with verbose logging

```powershell
msiexec /i "DockerDesktop.msi" /L*V ".\msi.log" /quiet
```

#### Installing non-interactively and suppressing reboots
#### Install non-interactively and suppressing reboots

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

#### Installing non-interactively with admin settings
#### Install non-interactively with admin settings

Check warning on line 99 in content/manuals/desktop/setup/install/enterprise-deployment/msi-install-and-configure.md

View workflow job for this annotation

GitHub Actions / vale

[vale] reported by reviewdog 🐶 [Docker.RecommendedWords] Consider using 'administrator' instead of 'admin' Raw Output: {"message": "[Docker.RecommendedWords] Consider using 'administrator' instead of 'admin'", "location": {"path": "content/manuals/desktop/setup/install/enterprise-deployment/msi-install-and-configure.md", "range": {"start": {"line": 99, "column": 37}}}, "severity": "INFO"}

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

#### Installing with the passive display option
#### Install interactively and allow users to switch to Windows containers without admin rights

Check warning on line 105 in content/manuals/desktop/setup/install/enterprise-deployment/msi-install-and-configure.md

View workflow job for this annotation

GitHub Actions / vale

[vale] reported by reviewdog 🐶 [Docker.HeadingLength] Try to keep headings short (< 8 words). Raw Output: {"message": "[Docker.HeadingLength] Try to keep headings short (\u003c 8 words).", "location": {"path": "content/manuals/desktop/setup/install/enterprise-deployment/msi-install-and-configure.md", "range": {"start": {"line": 105, "column": 6}}}, "severity": "INFO"}

Check warning on line 105 in content/manuals/desktop/setup/install/enterprise-deployment/msi-install-and-configure.md

View workflow job for this annotation

GitHub Actions / vale

[vale] reported by reviewdog 🐶 [Docker.RecommendedWords] Consider using 'let' instead of 'allow' Raw Output: {"message": "[Docker.RecommendedWords] Consider using 'let' instead of 'allow'", "location": {"path": "content/manuals/desktop/setup/install/enterprise-deployment/msi-install-and-configure.md", "range": {"start": {"line": 105, "column": 32}}}, "severity": "INFO"}

Check warning on line 105 in content/manuals/desktop/setup/install/enterprise-deployment/msi-install-and-configure.md

View workflow job for this annotation

GitHub Actions / vale

[vale] reported by reviewdog 🐶 [Docker.RecommendedWords] Consider using 'administrator' instead of 'admin' Raw Output: {"message": "[Docker.RecommendedWords] Consider using 'administrator' instead of 'admin'", "location": {"path": "content/manuals/desktop/setup/install/enterprise-deployment/msi-install-and-configure.md", "range": {"start": {"line": 105, "column": 84}}}, "severity": "INFO"}

```powershell
msiexec /i "DockerDesktop.msi" /L*V ".\msi.log" /quiet /norestart ALLOWEDORG="docker" ALWAYSRUNSERVICE=1
```

#### Install with the passive display option

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

Expand Down Expand Up @@ -150,25 +156,25 @@
msiexec /x {10FC87E2-9145-4D7D-B493-2E99E8D8E103} /L*V ".\msi.log" /quiet
```

#### Uninstalling interactively with verbose logging
#### Uninstall interactively with verbose logging

```powershell
msiexec /x "DockerDesktop.msi" /L*V ".\msi.log"
```

#### Uninstalling interactively without verbose logging
#### Uninstall interactively without verbose logging

```powershell
msiexec /x "DockerDesktop.msi"
```

#### Uninstalling non-interactively with verbose logging
#### Uninstall non-interactively with verbose logging

```powershell
msiexec /x "DockerDesktop.msi" /L*V ".\msi.log" /quiet
```

#### Uninstalling non-interactively without verbose logging
#### Uninstall non-interactively without verbose logging

```powershell
msiexec /x "DockerDesktop.msi" /quiet
Expand Down