How to uninstall things in win11

下次还敢
Release: 2024-04-15 14:51:12
Original
905 people have browsed it

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:
Get-AppxPackage | Remove-AppxPackage -Name "<应用程序名称>"
Copy after login

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:
Get-AppxPackage | Select Name
Copy after login
  • 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!

Related labels:
source:php.cn
Statement of this Website
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
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!