In Windows 11, you can uninstall an app in three ways: Uninstall via Settings Uninstall via Control Panel Uninstall via PowerShell
How to uninstall an app in Windows 11
Method 1: Uninstall through "Settings"
- Open " Start menu and click Settings.
- In the left column, select "Apply".
- In the right panel, scroll down and select the app you want to uninstall.
- Click the "Uninstall" button.
Method 2: Uninstall through "Control Panel"
- Open the "Start" menu and search for "Control Panel".
- Click on the "Control Panel" result.
- Under "Programs," select "Programs and Features."
- Find the application you want to uninstall in the list, right-click and select "Uninstall".
Method 3: Uninstall through "PowerShell"
- Open the "Start" menu and search for "Windows PowerShell".
- Right-click the "Windows PowerShell" result and select "Run as administrator."
- In the PowerShell window, enter the following command and press Enter:
<code>Get-AppxPackage | Remove-AppxPackage -Name "<应用程序名称>"</code>
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:
<code>Get-AppxPackage | Select Name</code>
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!