微软延续了其在(Microsoft)Windows 11中包含许多我们不需要的应用程序的悠久历史。它有时被称为英国媒体报道。因此,有进取心的人继续寻找在Windows 11/10Microsoft 应用程序(Microsoft apps)的方法的悠久历史。为什么?因为 Windows 11 中不必要的应用程序更少,所以Windows (Windows 11)11(Windows 11)更快。
从“开始”菜单中删除默认 Microsoft 应用(Remove Default Microsoft Apps from the Start Menu)
也许您不想卸载默认的Windows 应用程序(Windows apps),而只是不想在“开始”菜单(Start Menu)中看到它们。这是一个取消固定Windows 应用程序(Windows apps)的简单过程。
打开开始菜单(Start Menu),右键单击应用程序并选择(app and select) 从开始取消(Unpin from Start)固定。该应用程序从“开始”菜单(Start Menu)中消失。
通过“开始”菜单在 Windows 11 中卸载 Microsoft 应用(Uninstall Microsoft Apps in Windows 11 via Start Menu)
卸载Microsoft 应用程序(Microsoft apps)的最简单方法可能是从“开始”菜单(Start Menu)中进行。
- 选择开始菜单(Start Menu),找到要删除的应用程序,右键单击它,然后选择卸载(Uninstall)。
- Windows 将要求您确认是否要卸载它。选择卸载(Uninstall)并删除该应用程序。
通过设置在 Windows 11 中卸载 Microsoft 应用(Uninstall Microsoft Apps in Windows 11 via Settings)
当您要卸载多个应用程序时,这是一种很好的点击方法。
- 选择开始菜单(Start Menu )并开始输入remove 。无需单击搜索栏(search bar)或选择任务栏中的搜索工具(Search tool)。刚开始(Just start)打字。从结果中选择添加或删除程序(Add or remove programs )。
- 设置将打开到应用程序和功能(Apps & features )区域。找到要删除的应用程序,右键单击它,然后选择卸载(Uninstall)。
- Windows 将要求您确认是否要卸载该应用程序。选择卸载(Uninstall)。
卸载应用程序时会有一个进度条,完成后会显示已(progress bar)卸载(Uninstalled )。
通过控制面板在 Windows 11 中卸载 Microsoft 应用(Uninstall Microsoft Apps in Windows 11 via Control Panel)
是的,控制面板(Control Panel)仍在Windows 11中。删除所有内容不像以前的版本那样方便。仍然可以通过此方法卸载程序,但是,通用 Windows 平台(Universal Windows Platform)( UWP ) 应用程序甚至不会出现在此处。UWP 应用程序(UWP apps)是您最有可能要卸载的应用程序。
- 选择开始菜单(Start Menu )并开始输入control 。 从结果中选择控制面板。(Control Panel)
- 当控制面板(Control Panel )窗口打开时,查找程序(Programs)并选择它下面的卸载程序(Uninstall a program )。
- 在卸载或更改程序(Uninstall or change a program )窗口中,选择要删除的程序,然后选择卸载(Uninstall)。
Windows 将显示用户帐户控制(User Account Control )( UAC ) 窗口,询问“您要允许此应用程序对您的设备进行更改吗?” 选择是(Yes)。根据程序的大小,程序消失可能需要几分钟。
通过 PowerShell 在 Windows 11 中卸载 Microsoft 应用程序(Uninstall Microsoft Apps In Windows 11 Via PowerShell)
甚至家庭用户也可以学习 PowerShell(home users can learn PowerShell)并更好地控制Windows。构建一个PowerShell 脚本(PowerShell script)来卸载Microsoft 应用程序(Microsoft apps)将使您能够最大程度地控制要删除的内容。它还使删除一堆Microsoft 应用程序(Microsoft apps)成为一项快速而简单的任务,因此请保存脚本以供下次安装Windows 11 使用。
如果创建PowerShell 脚本(PowerShell script)超出您的预期,但仍想要那种速度和控制(speed and control),请跳到下面的脚本部分。
- 选择开始菜单(Start Menu )并开始输入powershell。选择PowerShell ISE选项并以管理员(Administrator)身份打开它。
- 打开后,输入并运行 cmdlet Set-ExecutionPolicy RemoteSigned。
当询问您是否真的要更改执行策略(execution policy)时,选择Yes to All。这将允许您运行您制作的脚本。
- 首先,您需要获取Windows 应用程序(Windows apps)的包名称。创建一个脚本并将其保存为类似get-InstalledApps.ps1的名称。将以下 cmdlet复制并粘贴(Copy and paste)到新脚本中。他们将创建并保存已安装UWP 应用(UWP apps)的Name和PackageFullName列表。(PackageFullName)# 开头的注释行解释了它下面的 cmdlet 的作用。
- Get-AppXPackage |`
- Select-Object -Property Name, PackageFullName |`
- Export-Csv “$PSScriptRoot\Windows-apps.csv”
- 打开生成的文本文件(text file)。从这个文件中删除什么的一个好的经验法则是删除任何你不确定它是什么或在PackageFullName中具有“中性”的行。这将只留下您确定要卸载的那些东西。如果您不确定在此处做什么,请继续阅读本文的下一部分。
- 创建另一个脚本并将其命名为uninstall-WindowsApps.ps1。使用以下 cmdlet 仅卸载保留在文本文件中的(text file)Windows 应用程序(Windows apps)。# 开头的注释行解释了它下面的 cmdlet 的作用。
- $unwantedApps = import-CSV “$PSScriptRoot\Windows-apps.csv”
- $unwantedApp variable
- foreach($unwantedApp in $unwantedApps){
- Get-AppXPackage $unwantedApp.name | Remove-AppXPackage -WhatIf
- }
准备好后,删除-WhatIf参数并运行脚本。这些应用程序将被卸载。
通过脚本在 Windows 11 中卸载 Microsoft 应用(Uninstall Microsoft Apps In Windows 11 Via Scripts)
有一些预制脚本可用于删除不需要的Microsoft 应用程序(Microsoft apps)。最受欢迎的两个是Windows 10 Decrapifier和Windows 10 Debloater。两者都做类似的事情并且都在Windows 11中工作,但是我们在这里只看Windows 10 Debloater,因为它有一个图形用户界面(user interface)( GUI ) 选项,您可能会发现使用它更有帮助。
- 转到Windows 10 Debloater页面并选择代码(Code )按钮,然后选择下载 ZIP(Download ZIP)。
- 下载zip 文件(zip file)后,将其解压缩。找到Windows10DebloaterGUI并运行它。
- 一些脚本将运行,然后Windows10Debloater GUI将打开。这里有几个选项,但最快、最简单的一个是REMOVE ALL BLOATWARE。
选择后,您将看到在后台运行的脚本删除了很多内容。这可能需要几分钟。完成的唯一通知是脚本停止滚动,最后一行是Finished all tasks。所有不需要的Microsoft 应用程序(Microsoft apps)都消失了。
如何在 Windows 11 中恢复默认 Microsoft 应用(How to Restore Default Microsoft Apps in Windows 11)
太好(Great)了,您清除了所有臃肿和默认的 Microsoft 应用程序(bloat and default Microsoft apps)。但是如果你需要他们回来怎么办?您可以通过Microsoft Store并一一重新安装它们。但是,最简单、最快捷的方法是使用一行PowerShell。
- 创建另一个脚本并将其命名为restore-WindowsApps.ps1。运行以下 cmdlet 以还原默认的Microsoft 应用程序(Microsoft apps)。# 开头的注释行解释了它下面的 cmdlet 的作用。
Get-AppXPackage -AllUsers | foreach {Add-AppXPackage – Register “$($_.InstallLocation)\appxmanifest.xml” -DisableDevelopmentMode}
- 您的Windows 版本(Windows version)通常具有的所有默认Microsoft 应用程序都已安装。(Microsoft Apps)
Windows 11 和默认应用 (Windows 11 and Default Apps )
不必要的默认应用程序一直是Windows的一部分,而且公平地说,大多数操作系统都是如此。现在你知道如何照顾它了。您是否使用任何其他方法,例如Chocolatey 包(Chocolatey package)管理器?你最喜欢哪个(Which)?我们喜欢从您那里听到新事物。让我们知道。
How To Remove Default Microsoft Apps in Windows 11/10
Micrоsoft continues its long history of including a lot of apps we don’t need in Windows 11. It’s sometimes called bloatware. So enterprising people continue their long history of finding ways to remove default Microsoft apps on Windows 11/10. Why? Because fewer unnecessary apps in Windows 11 make for a faster Windows 11.
Remove Default Microsoft Apps from the Start Menu
Maybe you don’t want to uninstall the default Windows apps, but would just rather not see them in the Start Menu. It’s a simple process to unpin Windows apps.
Open the Start Menu, right-click on the app and select Unpin from Start. The app disappears from the Start Menu.
Uninstall Microsoft Apps in Windows 11 via Start Menu
Perhaps the simplest way to uninstall Microsoft apps is to do it from the Start Menu.
- Select the Start Menu, find the app you want to delete, right-click on it, and select Uninstall.
- Windows will ask you to confirm that you want to uninstall it. Select Uninstall and the app is removed.
Uninstall Microsoft Apps in Windows 11 via Settings
When you want to uninstall several apps, this is a good point-and-click method.
- Select the Start Menu and start typing remove. There’s no need to click in the search bar or select the Search tool in the taskbar. Just start typing. Select Add or remove programs from the results.
- Settings will open to the Apps & features area. Find the app to be removed, right-click on it, and select Uninstall.
- Windows will ask you to confirm that you want to uninstall the app. Select Uninstall.
There’ll be a progress bar as the app is uninstalled and it will say Uninstalled when finished.
Uninstall Microsoft Apps in Windows 11 via Control Panel
Yes, the Control Panel is still in Windows 11. It’s not as handy for removing everything as it was in previous versions. Programs can still be uninstalled through this method, however, Universal Windows Platform (UWP) apps won’t even show up here. UWP apps are the ones you most likely want to uninstall.
- Select the Start Menu and start typing control. Select Control Panel from the results.
- When the Control Panel window opens, look for Programs and select Uninstall a program below it.
- In the Uninstall or change a program window, select the program to remove and then select Uninstall.
Windows will show the User Account Control (UAC) window asking, “Do you want to allow this app to make changes to your device?” Select Yes. Depending on the size of the program, it may take a few minutes until the program is gone.
Uninstall Microsoft Apps In Windows 11 Via PowerShell
Even home users can learn PowerShell and have greater control over Windows. Building a PowerShell script to uninstall Microsoft apps will give you the most control over what gets removed. It also makes removing a bunch of Microsoft apps a quick and easy task, so save the script for the next time you install Windows 11.
If creating a PowerShell script is more than you bargained for, yet still want that kind of speed and control, skip to the scripting section below.
- Select the Start Menu and start typing powershell. Select the PowerShell ISE option and open it as Administrator.
- Once it is open, enter and run the cmdlet Set-ExecutionPolicy RemoteSigned.
When asked if you really want to change the execution policy, select Yes to All. This will allow you to run the scripts you make.
- First you need to get the package names for the Windows apps. Create a script and save it with a name like get-InstalledApps.ps1. Copy and paste the following cmdlets into the new script. They will create and save a list of the Name, and PackageFullName of UWP apps installed. Comment lines in the image beginning with a # explain what the cmdlets under it do.
- Get-AppXPackage |`
- Select-Object -Property Name, PackageFullName |`
- Export-Csv “$PSScriptRoot\Windows-apps.csv”
- Open the resulting text file. A good rule of thumb for what to remove from this file is to delete any lines that you’re not sure what it is or that has “neutral” in the PackageFullName. This will leave only those things that you are certain you want to uninstall. If you’re not sure what to do here, move on to the next section of the article.
- Create another script and name it uninstall-WindowsApps.ps1. Use the following cmdlets to uninstall only the Windows apps that remain in the text file. Comment lines in the image beginning with a # explain what the cmdlets under it do.
- $unwantedApps = import-CSV “$PSScriptRoot\Windows-apps.csv”
- $unwantedApp variable
- foreach($unwantedApp in $unwantedApps){
- Get-AppXPackage $unwantedApp.name | Remove-AppXPackage -WhatIf
- }
When you’re ready, remove the -WhatIf parameter and run the script. The apps will be uninstalled.
Uninstall Microsoft Apps In Windows 11 Via Scripts
There are a few pre-made scripts that can be used to remove unwanted Microsoft apps. Two of the most popular are Windows 10 Decrapifier and Windows 10 Debloater. Both do similar things and both work in Windows 11, however we’ll only look at Windows 10 Debloater here, as it has a graphical user interface (GUI) option that you may find more helpful to use.
- Go to the Windows 10 Debloater page and select the Code button, then select Download ZIP.
- Once the zip file is downloaded, extract it. Find Windows10DebloaterGUI and run it.
- Some script will run and then the Windows10Debloater GUI will open. There’s several options here, however the quickest, simplest one to use is REMOVE ALL BLOATWARE.
Once selected, you’ll see the script running in the background removing a lot of things. This can take a few minutes.The only notification that it’s done is the script stops scrolling and the last line is Finished all tasks. All the unwanted Microsoft apps are gone.
How to Restore Default Microsoft Apps in Windows 11
Great, you cleared out all the bloat and default Microsoft apps. But what if you need them back? You could go through the Microsoft Store and reinstall them one by one. However, the simplest and quickest way is with a single line of PowerShell.
- Create another script and name it restore-WindowsApps.ps1. Run the following cmdlets to restore the default Microsoft apps. Comment lines in the image beginning with a # explain what the cmdlets under it do.
Get-AppXPackage -AllUsers | foreach {Add-AppXPackage – Register “$($_.InstallLocation)\appxmanifest.xml” -DisableDevelopmentMode}
- All the default Microsoft Apps that your Windows version normally has are installed.
Windows 11 and Default Apps
Unnecessary default apps have always been a part of Windows and, to be fair, most operating systems. Now you know how to take care of that. Do you use any other methods like Chocolatey package manager? Which is your favorite? We love hearing about new things from you. Let us know.