Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix weird encoding issue with -All option #301

Merged
merged 1 commit into from
Dec 20, 2024
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion docs/install/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ powershell -Command "Start-Process PowerShell -Verb RunAs"

In the new Powershell window, run the following command to install the containers feature.
```powershell
Enable-WindowsOptionalFeature -Online -FeatureName containers All
Enable-WindowsOptionalFeature -Online -FeatureName containers -All
```
This will require a reboot for the `Containers` feature to properly function.

Expand Down
2 changes: 1 addition & 1 deletion docs/install/requirements.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ powershell -Command "Start-Process PowerShell -Verb RunAs"

In the new Powershell window, run the following command.
```powershell
Enable-WindowsOptionalFeature -Online -FeatureName Containers All
Enable-WindowsOptionalFeature -Online -FeatureName Containers -All
```

This will require a reboot for the `Containers` feature to properly function.
Expand Down
2 changes: 1 addition & 1 deletion docs/install/windows_airgap.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ powershell -Command "Start-Process PowerShell -Verb RunAs"

In the new Powershell window, run the following command.
```powershell
Enable-WindowsOptionalFeature -Online -FeatureName containers All
Enable-WindowsOptionalFeature -Online -FeatureName containers -All
```
This will require a reboot for the `Containers` feature to properly function.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ powershell -Command "Start-Process PowerShell -Verb RunAs"

在新的 Powershell 窗口中,运行以下命令:
```powershell
Enable-WindowsOptionalFeature -Online -FeatureName containers All
Enable-WindowsOptionalFeature -Online -FeatureName containers -All
```
需要重启才能使 `Containers` 功能正常运行。

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ powershell -Command "Start-Process PowerShell -Verb RunAs"

在新的 Powershell 窗口中,运行以下命令:
```powershell
Enable-WindowsOptionalFeature -Online -FeatureName Containers All
Enable-WindowsOptionalFeature -Online -FeatureName Containers -All
```

需要重启才能使 `Containers` 功能正常运行。
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ powershell -Command "Start-Process PowerShell -Verb RunAs"

在新的 Powershell 窗口中,运行以下命令:
```powershell
Enable-WindowsOptionalFeature -Online -FeatureName containers All
Enable-WindowsOptionalFeature -Online -FeatureName containers -All
```
需要重启才能使 `Containers` 功能正常运行。

Expand Down
Loading