Home  >  Article  >  System Tutorial  >  How to uninstall things in win11

How to uninstall things in win11

下次还敢
下次还敢Original
2024-04-15 14:51:12979browse

In Windows 11, you can uninstall an app in three ways: Uninstall via Settings Uninstall via Control Panel Uninstall via PowerShell

How to uninstall things in win11

How to uninstall an app in Windows 11

Method 1: Uninstall through "Settings"

  1. Open " Start menu and click Settings.
  2. In the left column, select "Apply".
  3. In the right panel, scroll down and select the app you want to uninstall.
  4. Click the "Uninstall" button.

Method 2: Uninstall through "Control Panel"

  1. Open the "Start" menu and search for "Control Panel".
  2. Click on the "Control Panel" result.
  3. Under "Programs," select "Programs and Features."
  4. Find the application you want to uninstall in the list, right-click and select "Uninstall".

Method 3: Uninstall through "PowerShell"

  1. Open the "Start" menu and search for "Windows PowerShell".
  2. Right-click the "Windows PowerShell" result and select "Run as administrator."
  3. In the PowerShell window, enter the following command and press Enter:
<code>Get-AppxPackage | Remove-AppxPackage -Name "<应用程序名称>"</code>

Note:

  • Replace "< Application name>" is the package name of the application to be uninstalled. You can find the package name by running the following command in PowerShell:
<code>Get-AppxPackage | Select Name</code>
  • Some applications may not be uninstalled via the above method. For these applications, you may need to go to the developer website or use a third-party uninstall tool.

The above is the detailed content of How to uninstall things in win11. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn