如何删除windows10内置应用
卸载Windows 10内置应用的方法
入门级
直接在搜索框输入【应用和功能】,找到目标双击点击【卸载】,点击【卸载】等待完成即可。
进阶版
很多应用例如【计算器】无法直接卸载,可以使用Windows Powershell卸载。
注意:这项操作可能会清除登录信息,账号密码请一定要牢记。
1. 直接在搜索框输入【Windows Powershell】找到它右击选择【以管理员身份运行】。
2. 以【计算器】为例,在弹出对话框内输入【Get-AppxPackage *calculator* | Remove-AppxPackage】(可以直接复制粘贴)回车。
3. 卸载后效果
4. 更多应用卸载
人脉:
Get-AppxPackage *people* | Remove-AppxPackage
Groove音乐、电影与电视:
Get-AppxPackage *zune* | Remove-AppxPackage
地图:
Get-AppxPackage *map* | Remove-AppxPackage
OneNote:
Get-AppxPackage *OneNote* | Remove-AppxPackage
3D:
Get-AppxPackage *3d* | Remove-AppxPackage
Camera相机:
Get-AppxPackage *camera* | Remove-AppxPackage
邮件和日历:
Get-AppxPackage *communi* | Remove-AppxPackage
新闻订阅:
Get-AppxPackage *bing* | Remove-AppxPackage
Xbox:
Get-AppxPackage *xbox* | Remove-AppxPackage
(卸载Xbox可能会报错,其实已卸载,忽略就好。)
5. 卸载后若想恢复,进入“Windows应用商店”,右上方搜索栏输入要下载的应用名称,找到后安装就可以啦。
1、首先点击任务栏中的搜索(Cortana图标)输入PowerShell,在搜索结果中右键单击PowerShell,选择“以管理员身份运行”。
2、输入如下对应的命令后回车,进行卸载相关的内置程序
Alarms & Clocks (时钟)
get-appxpackage *Microsoft.WindowsAlarms* | remove-appxpackage
Calculator (计算器)
get-appxpackage *Microsoft.WindowsCalculator* | remove-appxpackage
Camera (相机)
get-appxpackage *Microsoft.WindowsCamera* | remove-appxpackage
Groove Music (音乐)
get-appxpackage *Microsoft.ZuneMusic* | remove-appxpackage
Mail & Calendar (邮件和日历)
get-appxpackage *microsoft.windowscommunicationsapps* | remove-appxpackage
Maps (地图)
get-appxpackage *Microsoft.WindowsMaps* | remove-appxpackage
Movies & Tv (电影和电视)
get-appxpackage *Microsoft.ZuneVideo* | remove-appxpackage
OneNote
get-appxpackage *Microsoft.Office.OneNote* | remove-appxpackage
People (人脉)
get-appxpackage *Microsoft.People* | remove-appxpackage
Photos (照片)
get-appxpackage *Microsoft.Windows.Photos* | remove-appxpackage
Voice Recorder (语音录音器)
get-appxpackage *Microsoft.WindowsSoundRecorder * | remove-appxpackage
Xbox
get-appxpackage *Microsoft.XboxApp* | remove-appxpackage
Weather (天气)
get-appxpackage *Microsoft.BingWeather* | remove-appxpackage
microsoft edge浏览器
Get-AppxPackage *edge* | Remove-AppxPackage
2020-01-09