目录
概述
Windows 10和Windows 11在一开始都预安装了很多普通人根本用不到或者使用频率很低的软件,而这些软件往往又占据着电脑的存储空间或者内存等电脑资源,这在一定程度上影响了电脑的性能。站在用户的角度,操作系统并不应该给用户预安装任何软件,但是很可惜,商业的本质驱使着他们不得不这么做。本文将分享给大家卸载掉这些无用软件的方法,我们一起来看看具体如何操作吧。
如何在Windows 10或Windows 11上卸载软件
在Windows 10和Windows 11上卸载软件非常简单,本文将逐步介绍所有的具体操作。
进入Windows系统设置面板
首先需要打开系统设置面板,你可以通过点击底部导航栏的“开始”按钮并在弹出的菜单列表中找到“设置”按钮或者使用快捷键“Windows+i”键来进入系统设置面板。
进入应用程序面板
在“系统设置”面板中的左边列表中找到“应用程序”图标并点击,然后在右侧列表中会显示与应用程序相关的图标列表,找到并选择“已安装的应用程序”。
确定需要卸载的软件
此时你会看到电脑中已经安装的应用程序列表,浏览此列表以确定需要卸载的应用。
执行卸载操作
找到需要卸载的应用并点击右侧的三点图标,在弹出来的下拉选单中直接选择“卸载”选项即可。
- 对于某些应用程序如果无法通过设置面板卸载则可以考虑使用第三方卸载软件。
使用Windows PowerShell卸载系统预装的软件
对于一些系统预装的软件我们是无法通过设置面板进行卸载操作的,如照片浏览器、视频播放器及XBox等,此时我们可以使用系统自带的Windows PowerShell对这些预装软件进行卸载。
在Windows PowerShell进行卸载操作将会使用到以下代码:
“Get-AppxPackage” 和 “Remove-AppxPackage”
值得说明的是并不是所有预装软件都可以被卸载,有些可能仅仅会被隐藏而已,不过这样也不错,至少比无法卸载要好点。
首先我们需要启用Windows PowerShell来获取系统中已经安装的应用程序列表,在Windows 11底部的导航栏中点击搜索按钮并在搜索框中输入“Power”关键字,在搜索结果下拉列表中点选Windows PowerShell图标或者在右侧区域中Windows PowerShell下拉选单中选择“以管理员身份运行”。
在打开的Windows PowerShell面板中输入:
Get-AppxPackage
然后点击回车按钮,你将会看到电脑中已经安装的应用程序列表,在列表中找到你需要卸载的软件名称,在接下来的操作中将会用到。
在Windows PowerShell窗口中接着输入:
Get-AppxPackage <应用名称> | Remove-AppxPackage
然后按回车键即可完成卸载。
以下为其他的系统预装的应用名称及卸载命令,你可以直接复制以完成卸载或隐藏操作:
- Remove Calculator:
Get-AppxPackage *calculator* | Remove-AppxPackage
- Remove People:
Get-AppxPackage *people* | Remove-AppxPackage
- Remove Voice Recorder:
Get-AppxPackage *soundrecorder* | Remove-AppxPackag
- Remove Get Office:
Get-AppxPackage *officehub* | Remove-AppxPackage
- Remove 3D Builder:
Get-AppxPackage *3dbuilder* | Remove-AppxPackage
- Remove Sway:
Get-AppxPackage *sway* | remove-AppxPackage
- Remove OneNote:
Get-AppxPackage *onenote* | Remove-AppxPackage
- Remove Alarms & Clock:
Get-AppxPackage *alarms* | Remove-AppxPackage
- Remove Camera:
Get-AppxPackage *camera* | Remove-AppxPackage
- Remove Calendar and Mail:
Get-AppxPackage *communicationsapps* | Remove-AppxPackage
- Remove Groove Music and Movies & TV apps together:
Get-AppxPackage *zune* | Remove-AppxPackage
- Remove Maps:
Get-AppxPackage *maps* | Remove-AppxPackage
- Remove Movies & TV:
Get-AppxPackage *zunevideo* | Remove-AppxPackage
- Remove Microsoft Solitaire Collection:
Get-AppxPackage *solitaire* | Remove-AppxPackage
- Remove Money, News, Sports, and Weather apps together:
Get-Appxpackage *bing* | Remove-AppxPackage
- Remove Money:
Get-AppxPackage *bingfinance* | Remove-AppxPackage
- Remove News:
Get-AppxPackage *bingnews* | Remove-AppxPackage
- Remove Sports:
Get-AppxPackage *bingsports* | Remove-AppxPackage
- Remove Get Started:
Get-AppxPackage *getstarted* | Remove-AppxPackage
- Remove Weather:
Get-AppxPackage *bingweather* | Remove-AppxPackage
- Remove Skype:
Get-AppxPackage *skype* | Remove-AppxPackage
- Remove Your Phone Companion:
Get-AppxPackage *yourphone* | Remove-AppxPackage
- Remove Photos:
Get-AppxPackage *photos* | Remove-AppxPackage
- Remove Microsoft Store:
Get-AppxPackage *windowsstore* | Remove-AppxPackage
如果你在操作过程中遇到任何问题欢迎在下方评论区留言,我们会在看到的第一时间给您回复,欢迎留言指正。