Skip to content
Open
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
22 changes: 21 additions & 1 deletion docs/core/additional-tools/uninstall-tool-overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,16 @@ To install the tool, perform the following steps:

::: zone pivot="os-windows"

### Install with winget

You can also install the .NET Uninstall Tool using the Windows Package Manager:

```powershell
winget install --id Microsoft.DotNet.UninstallTool --source winget
```

### Install with the MSI installer

1. Download the _dotnet-core-uninstall-\*.msi_ installer from the [the GitHub releases page](https://aka.ms/dotnet-core-uninstall-tool).
1. Run the installer.

Expand All @@ -65,7 +75,17 @@ To install the tool, perform the following steps:

::: zone pivot="os-windows"

To uninstall the tool, perform the following steps:
### Uninstall using winget

To uninstall using winget, execute the following:

```powershell
winget uninstall --id Microsoft.DotNet.UninstallTool
```

### Manually uninstalling
Copy link

Copilot AI Jan 24, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The heading "Manually uninstalling" uses a gerund, which conflicts with the doc style guidance for headings. Rename it to a non-gerund form, for example, "Uninstall manually" or "Manual uninstall".

Copilot uses AI. Check for mistakes.
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@copilot open a new pull request to apply changes based on this feedback


To manually uninstall the tool, perform the following steps:

1. Open the Start menu.
1. Search for **Add or Remove Programs** and open it.
Expand Down