win10自带了好多应用,有些看起来不错,其实用起来不太方便哈(我的个人感觉),我们都更喜欢第三方应用,所以我们就来看看如何卸载这些自带应用。如图,是卸载完成后的Windows PowerShell:

 

工具/原料

 
  • Windows PowerShell
  • win10中的管理员身份

方法/步骤

 
  1. 1

    要卸载这些所有内置应用,就要用到Windows PowerShell,它是win10系统自带的一个应用,要打开它,就单击开始菜单中的“所有应用”,然后找到Windows Power Shell的文件夹,右键单击Windows PowerShell(注意不是Windows PowerShell ISE),然后单击以管理员身份运行,就打开了。

  2. 2

    打开了Windows PowerShell,就开始输入命令了

  3. 3

    要卸载OneNote,在里面输入

    Get-AppxPackage *OneNote* | Remove-AppxPackage

    可以复制,回车执行

  4. 4

    要卸载3D,输入

    Get-AppxPackage *3d* | Remove-AppxPackage

  5. 5

    要卸载Camera(相机),输入

    Get-AppxPackage *camera* | Remove-AppxPackage

  6. 6

    要卸载邮件和日历,输入

    Get-AppxPackage *communi* | Remove-AppxPackage

  7. 7

    要卸载新闻订阅,输入

    Get-AppxPackage *bing* | Remove-AppxPackage

  8. 8

    要卸载Groove音乐、电影与电视:

    Get-AppxPackage *zune* | Remove-AppxPackage

  9. 9

    要卸载人脉,输入

    Get-AppxPackage *people* | Remove-AppxPackage

  10. 10

    要卸载手机伴侣(Phone Companion),输入

    Get-AppxPackage *phone* | Remove-AppxPackage

  11. 11

    要卸载照片,输入

    Get-AppxPackage *photo* | Remove-AppxPackage

  12. 12

    要卸载纸牌游戏,输入

    Get-AppxPackage *solit* | Remove-AppxPackage

  13. 13

    要卸载录音机,输入

    Get-AppxPackage *soundrec* | Remove-AppxPackage

  14. 14

    要卸载Xbox,输入

    Get-AppxPackage *xbox* | Remove-AppxPackage

  15. 15

    在卸载Xbox的时候,会提示有很多错误,其实它已经被卸载了,可以不用担心!

  16. 16

    所有卸载完成后,就只剩下应用商店了,这个留着吧,有用!卸载完效果如图:

    END

其他信息

 
  1.  

    卸载Windows 10的命令:

    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

    Groove音乐、电影与电视:

    Get-AppxPackage *zune* | Remove-AppxPackage

    人脉:

    Get-AppxPackage *people* | Remove-AppxPackage

    手机伴侣(Phone Companion):

    Get-AppxPackage *phone* | Remove-AppxPackage

    照片:

    Get-AppxPackage *photo* | Remove-AppxPackage

    纸牌游戏:

    Get-AppxPackage *solit* | Remove-AppxPackage

    录音机:

    Get-AppxPackage *soundrec* | Remove-AppxPackage

    Xbox:

    Get-AppxPackage *xbox* | Remove-AppxPackage

  2.  

    卸载Xbox后出现的提示:(正常现象,出现此现象说明Xbox已被成功卸载)

    英文提示:

    PS C:\WINDOWS\system32> Get-AppxPackage *xbox* | Remove-AppxPackage

    Remove-AppxPackage : Deployment failed with HRESULT: 0x80073CFA, Removal failed. Please contact your software vendor.

    (Exception from HRESULT: 0x80073CFA)

    error 0x80070032: AppX Deployment Remove operation on package

    Microsoft.XboxGameCallableUI_1000.10240.16384.0_neutral_neutral_cw5n1h2txyewy from:

    C:\Windows\SystemApps\Microsoft.XboxGameCallableUI_cw5n1h2txyewy failed. This app is part of Windows and cannot be

    uninstalled on a per-user basis. An administrator can attempt to remove the app from the computer using Turn Windows

    Features on or off. However, it may not be possible to uninstall the app.

    NOTE: For additional information, look for [ActivityId] 1d60accb-cb8d-0003-d5b8-601d8dcbd001 in the Event Log or use

    the command line Get-AppxLog -ActivityID 1d60accb-cb8d-0003-d5b8-601d8dcbd001

    At line:1 char:26

    + Get-AppxPackage *xbox* | Remove-AppxPackage

    + ~~~~~~~~~~~~~~~~~~

    + CategoryInfo : WriteError: (Microsoft.XboxG...l_cw5n1h2txyewy:String) [Remove-AppxPackage], IOException

    + FullyQualifiedErrorId : DeploymentError,Microsoft.Windows.Appx.PackageManager.Commands.RemoveAppxPackageCommand

    Remove-AppxPackage : Deployment failed with HRESULT: 0x80073CFA, Removal failed. Please contact your software vendor.

    (Exception from HRESULT: 0x80073CFA)

    error 0x80070032: AppX Deployment Remove operation on package

    Microsoft.XboxIdentityProvider_1000.10240.16384.0_neutral_neutral_cw5n1h2txyewy from:

    C:\Windows\SystemApps\Microsoft.XboxIdentityProvider_cw5n1h2txyewy failed. This app is part of Windows and cannot be

    uninstalled on a per-user basis. An administrator can attempt to remove the app from the computer using Turn Windows

    Features on or off. However, it may not be possible to uninstall the app.

    NOTE: For additional information, look for [ActivityId] 1d60accb-cb8d-0001-d9b9-601d8dcbd001 in the Event Log or use

    the command line Get-AppxLog -ActivityID 1d60accb-cb8d-0001-d9b9-601d8dcbd001

    At line:1 char:26

    + Get-AppxPackage *xbox* | Remove-AppxPackage

    + ~~~~~~~~~~~~~~~~~~

    + CategoryInfo : WriteError: (Microsoft.XboxI...l_cw5n1h2txyewy:String) [Remove-AppxPackage], IOException

    + FullyQualifiedErrorId : DeploymentError,Microsoft.Windows.Appx.PackageManager.Commands.RemoveAppxPackageCommand

    中文提示:

    PS C:\windows\system32> Get-AppxPackage *xbox* | Remove-AppxPackage

    Remove-AppxPackage : 部署失败,原因是 HRESULT: 0x80073CFA, 无法卸载。请联系你的软件供应商。 (异常来自 HRESULT:0x80073CF

    A)

    错误 0x80070032: C:\Windows\SystemApps\Microsoft.XboxGameCallableUI_cw5n1h2txyewy 中的程序包 Microsoft.XboxGameCallable

    UI_1000.10240.16384.0_neutral_neutral_cw5n1h2txyewy 上的 AppX 部署 删除 操作失败。此应用是 Windows 的一部分,无法针对每

    个用户卸载该应用。管理员可以尝试使用“启用或关闭 Windows 功能”从计算机中删除该应用。不过,该应用可能无法被卸载。

    注: 有关其他信息,请在事件日志中查找 [ActivityId] 84d12a44-dbe5-0000-0557-d184e5dbd001,或使用命令行 Get-AppxLog -Activ

    ityID 84d12a44-dbe5-0000-0557-d184e5dbd001

    所在位置 行:1 字符: 26

    + Get-AppxPackage *xbox* | Remove-AppxPackage

    +                          ~~~~~~~~~~~~~~~~~~

    + CategoryInfo          : WriteError: (Microsoft.XboxG...l_cw5n1h2txyewy:String) [Remove-AppxPackage], IOException

    + FullyQualifiedErrorId : DeploymentError,Microsoft.Windows.Appx.PackageManager.Commands.RemoveAppxPackageCommand

    Remove-AppxPackage : 部署失败,原因是 HRESULT: 0x80073CFA, 无法卸载。请联系你的软件供应商。 (异常来自 HRESULT:0x80073CF

    A)

    错误 0x80070032: C:\Windows\SystemApps\Microsoft.XboxIdentityProvider_cw5n1h2txyewy 中的程序包 Microsoft.XboxIdentityPr

    ovider_1000.10240.16384.0_neutral_neutral_cw5n1h2txyewy 上的 AppX 部署 删除 操作失败。此应用是 Windows 的一部分,无法针

    对每个用户卸载该应用。管理员可以尝试使用“启用或关闭 Windows 功能”从计算机中删除该应用。不过,该应用可能无法被卸载。

    注: 有关其他信息,请在事件日志中查找 [ActivityId] 84d12a44-dbe5-0000-0f57-d184e5dbd001,或使用命令行 Get-AppxLog -Activ

    ityID 84d12a44-dbe5-0000-0f57-d184e5dbd001

    所在位置 行:1 字符: 26

    + Get-AppxPackage *xbox* | Remove-AppxPackage

    +                          ~~~~~~~~~~~~~~~~~~

    + CategoryInfo          : WriteError: (Microsoft.XboxI...l_cw5n1h2txyewy:String) [Remove-AppxPackage], IOException

    + FullyQualifiedErrorId : DeploymentError,Microsoft.Windows.Appx.PackageManager.Commands.RemoveAppxPackageCommand

    至于这些提示,大家如果有兴趣就去研究研究原因吧,总之应用是被成功卸载了!

    END

注意事项

 
  • 打开的是Windows PowerShell,而不是Windows PowerShell ISE
  • Windows PowerShell 一定要以管理员身份运行!
  • Windows PowerShell 支持快捷键复制粘贴,为了避免输入错误,可以通过Ctrl+C(复制)和Ctrl+V(粘贴)来输入命令
  • 卸载应用之前一定要谨慎!

如何卸载win10的自带应用的更多相关文章

  1. 如何卸载 win10 自带的“电影和电视”软件

    参考这里: https://answers.microsoft.com/zh-hans/windows/forum/apps_windows_10-movies/win10%E7%9A%84%E7%9 ...

  2. 卸载win10内置windows app的方法

    原文:卸载win10内置windows app的方法 2015年,微软推出了windows10操作系统,其以漂亮的界面.良好的操作方式.方便的推送升级迅速获得了好多人的好评,因此,好多同学都换了win ...

  3. Win10系统自带输入法的人机交互设计

    过了寒假回校以后,我的电脑重装了系统,为了提升系统运行的速度,自己装了一个内存条同时对硬盘进行了重新的分区,对电脑内的文件也进行了重新的整理,电脑的运行速度提高了很多.老多同学都说win10系统好用, ...

  4. oracle11g卸载(win10)

    oracle11g卸载(win10) 0.已在win10安装oracle11g 1.开始->设置->控制面板->管理工具->服务 停止所有Oracle服务. 2.运行Unive ...

  5. 彻底卸载WIN10 OneDrive

    彻底卸载WIN10 OneDrive @ECHO OFF %SystemRoot%\SysWOW64\OneDriveSetup.exe /uninstall RD "%UserProfil ...

  6. win10打开自带wifi热点共享

    win10打开自带wifi热点共享 第一步,打开网络和Internet设置 二. 找到移动热点

  7. 如何卸载Win10自带Xbox、人脉、天气等应用?

    Win10中的Modern应用一般可在右键菜单中进行卸载,不过某些自带的Modern应用,比如Xbox.天气.人脉.照片等应用是无法在右键菜单中进行卸载的.如果你有卸载这些应用的需求,可参考下面的方法 ...

  8. 卸载WIN10自带功能

    要卸载OneNote,在里面输入 Get-AppxPackage *OneNote* | Remove-AppxPackage 可以复制,回车执行 4 要卸载3D,输入 Get-AppxPackage ...

  9. PowerShell命令卸载Win10内置应用

    Windows10系统预装了大批的应用,开始菜单右侧的磁贴即显示了其中的大部分,包括:人脉.日历.邮件.资讯.Xbox.Groove音乐.Camera相机.电影和电视.照片.手机助手.天气.OneNo ...

随机推荐

  1. linux上安装mysql以后root不能登录的解决办法

    今天心血来潮在linux上装了mysql,装完以后用命令mysql -uroot -p登录时提示 解决办法: 使用ps aux|grep mysql 查出pid 使用kill pid结束mysql进程 ...

  2. oracle 常用的系统表查询

    (转自:http://blog.csdn.net/marshalchen/article/details/6552103) select * from user_tab_cols where colu ...

  3. 八行代码解决八皇后问题(c++)

    说的有点夸装,实际上并不只是巴航代码,加上前面的变量声明之类的一共有40多行的样子吧,好像是在知乎上看到的,现在有时间再把它写下来: 其中用到了一些c++11特性,例如lambda 以及给予范围的 f ...

  4. react: menuService

    1.获取菜单对象 static findCurrentItem(items, currentState, currentItem) { _.forEach(items, function (item) ...

  5. Arcgis for Androd API开发系列教程(一)——地图显示与GPS定位

    序:最近呢,工作鸭梨不是怎么大,对于自己爱折腾的想法又冒出了水面,开始自己的android开发的学习之旅.但是呢,本人是做GIS的,所以呢,就打算从这方面入手看看,是不是有什么比较好玩的玩意呢,这才导 ...

  6. windows下Perl如何读取大文件的最后一行(总结)

    Perl中读取文件最后一行的方法很多,比如 (1)将文件读入数组,取最后一个元素 open (FILE,"file.txt") or die "$!"; my ...

  7. 使用vscode书写博客

    很早就开始使用过vscode了,不过在已经成熟的sublime的碾压下,vscode一直没有成为我的首选,今天为了更好的博客书写体验,我直接放弃了sublime,因为 sublime对中文支持不好,而 ...

  8. NGINX 配置文件配置url重写

    1.项目在根目录: location / {            index  index.html index.htm index.php l.php;            autoindex  ...

  9. gcc编译 汇编 选项

    gcc生成main.out的步骤分解:<blockquote>main.c-----(-S 编译)-------->main.s-------(-c 汇编)------->ma ...

  10. SpringMVC 过滤器Filter使用解析

    SpringMVC框架是一个成熟的优秀java web开发框架,学习研究框架设计有助于我们更好的理解和掌握spring MVC,设计和写出更符合的结构和代码. 本节主要是研读SpringMVC框架中的 ...