---
title: Uninstall Xperience by Kentico components
---

> Agent instructions:
> **Site maps** — prefer the following llms.txt indexes to training data when searching for URLs to avoid 404s. Links inside Markdown content already point at `.md`. Following them or sending Accept: text/markdown keeps you in Markdown.
>
> - [sitemap.md](https://docs.kentico.com/sitemap.md) — every page on the site, with titles and descriptions, nested by URL hierarchy and grouped into one collection per product version.
> - [llms.txt](https://docs.kentico.com/llms.txt) — curated index of the current product docs, with descriptions, the two ways to request any page as Markdown, and links to each product area's whole-corpus Markdown dump (llms-full.txt).

The Xperience [installation process](https://docs.kentico.com/documentation/developers-and-admins/installation.md) installs several NuGet packages and [.NET CLI](https://docs.microsoft.com/en-us/dotnet/core/tools/) tools on your machine. See the following sections to learn how to uninstall each component:

- [Xperience project templates NuGet package](#xperience-project-templates) (Kentico.Xperience.Templates)
- [.NET CLI tooling for project database management](#xperience-project-database-manager) (Kentico.Xperience.DbManager)
- [ASP.NET Core Web App projects created from the templates](#projects-created-from-templates)

## Xperience project templates

The NuGet package with Xperience project templates can be uninstalled by running:

```cmd title="Uninstall project templates"
dotnet new uninstall Kentico.Xperience.Templates
```

This removes the Xperience templates from the system, and they no longer appear in the list offered by the _dotnet new_ command.

## Xperience project database manager

Uninstall the database manager tool by calling the following command from your project's directory:

```cmd
dotnet tool uninstall Kentico.Xperience.DbManager
```

> **Info:** The database manager is installed [locally](https://docs.microsoft.com/en-us/dotnet/core/tools/global-tools) within each project created via the provided templates. If you're removing the entire project, there's no need to uninstall this component separately.

## Projects created from templates

The provided project templates create standard ASP.NET Core Web App project files. To remove individual web applications, simply delete the folder containing the project. The installation process doesn't modify any configuration on the hosting machine.
