Step1:首先,在电脑桌面上点击左下角的开始菜单,在依次选择打开所有应用—Windows PowerShell,在Windows PowerShell上单击右键,选择以管理员身份运行;

Step2:输入指令 Get-AppxPackage -AllUsers | Remove-AppxPackage,在按回车键即可删除所有内置应用;

Step3:当然一般只想删除某一个内置软件,输入下面对应的指令即可

(偷偷告诉你,win10有自带的截图工具哦,个人觉得还是比较好用的,Win+R然后输入指令snippingtool就打开啦)

其他应用的删除命令:
  3D Builder
  Get-AppxPackage *3dbuilder* | Remove-AppxPackage
  闹钟与时钟
  Get-AppxPackage *windowsalarms* | Remove-AppxPackage
  行事历
  Get-AppxPackage *windowscalculator* | Remove-AppxPackage
  行事历与邮件
  Get-AppxPackage *windowscommunicationsapps* | Remove-AppxPackage
  相机
  Get-AppxPackage *windowscamera* | Remove-AppxPackage
  取得Office
  Get-AppxPackage *officehub* | Remove-AppxPackage
  取得Skype
  Get-AppxPackage *skypeapp* | Remove-AppxPackage
  取得开始
  Get-AppxPackage *getstarted* | Remove-AppxPackage
  Groove 音乐
  Get-AppxPackage *zunemusic* | Remove-AppxPackage
  地图
  Get-AppxPackage *windowsmaps* | Remove-AppxPackage
  Microsoft Solitaire Collection 扑克牌游戏
  Get-AppxPackage *solitairecollection* | Remove-AppxPackage
  财经
  Get-AppxPackage *bingfinance* | Remove-AppxPackage
  Movies & TV
  Get-AppxPackage *zunevideo* | Remove-AppxPackage
  新闻
  Get-AppxPackage *bingnews* | Remove-AppxPackage
  OneNote
  Get-AppxPackage *onenote* | Remove-AppxPackage
  联络人
  Get-AppxPackage *people* | Remove-AppxPackage
  手机小帮手
  Get-AppxPackage *windowsphone* | Remove-AppxPackage
  相片
  Get-AppxPackage *photos* | Remove-AppxPackage
  市集
  Get-AppxPackage *windowsstore* | Remove-AppxPackage
  运动
  Get-AppxPackage *bingsports* | Remove-AppxPackage
  语音录音机
  Get-AppxPackage *soundrecorder* | Remove-AppxPackage
  天气
  Get-AppxPackage *bingweather* | Remove-AppxPackage
  Xbox
  Get-AppxPackage *xboxapp* | Remove-AppxPackage

win10 内置软件经常不用,还占空间?如何轻松卸载的更多相关文章

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

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

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

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

  3. win10开启 linux Bash命令(win10内置了linux系统支持)

    win10开启 Ubuntu linux Bash命令(win10内置了linux系统支持) 第一步: 先在设置→更新和安全→针对开发人员中选择"开发人员模式",点击后会下载&qu ...

  4. Win10内置应用恢复初始状态

    和Win8/Win8.1相同,Win10也内置了很多默认Windows应用,比如计算器.天气.人脉.Groove音乐.电影和电视.邮件和日历.Edge浏览器等.一般情况下,这些应用不会有太大的问题,但 ...

  5. 如何在WIN10内置Ubuntu中有多个terminal

    使用的是tmux来实现在WIN10的内置Ubuntu实现多终端窗口 先安装tmux:sudo apt-get install tumx 启动tmux,tmux 然后就可以在tmux中实现多窗口.其操作 ...

  6. SecureCRT 连接Win10内置ubuntu问题及解决办法

    1: 输入hostname, username 后连接提示: ubuntu The remote system refused the connection. 因为没有安装或启动 ssh.  使用命令 ...

  7. 卸载win10内置的onenote

    powershell命令如下 get-appxpackage *onenote* | remove-appxpackage

  8. linux内置软件安装命令

    yum -y install epel-release

  9. 手把手教你使用ADB卸载手机内置App软件

    [一.前言] 不知道你们有没有那么一段黑暗时期,刚买个手机,手机上内置一堆app,还卸载不掉,然后每天各种广告,手机一共1G的运行内存,那些流氓app还要再占走一些内存,真是让人欲哭无泪啊,后来我就学 ...

随机推荐

  1. jdreact转换为H5注意事项

    1:先执行npm install 然后执行 npm run web-init  配置完后 在执行 npm run web-start(注意的是不要根据文档执行 yarn add -D @jdreact ...

  2. IntelliJ IDEA备忘

    IntelliJ IDEA生成get/set方法的快捷键 IntelliJ IDEA生成get/set有2种方式,alt+enter.alt+insert.下面分别介绍这2种方式快速生成get与set ...

  3. shell excute mongo query command

    use shell command method one: #!/bin/bash ] then echo 'Please input cid' exit fi HOST= mongo ${HOST} ...

  4. Singer 学习十三 发现模式

    发现模式 发现模式提供了一种描述tap 支持数据流的方式,使用了json schema 做为描述数据的结构以及每个数据流的 类型,发现模式的实现依赖tap 的数据源,有些taps 将硬编码每个流的模式 ...

  5. JAVA中数组Array与List互转

    List<String> list = new ArrayList<String>();String[] array = new String[10]; 1.数组转成Listl ...

  6. redis 学习资料

    redis 学习资料 网址 Redis 教程(菜鸟教程) http://www.runoob.com/redis/redis-tutorial.html Redis 命令参考 http://redis ...

  7. 逻辑回归原理(python代码实现)

    Logistic Regression Classifier逻辑回归主要思想就是用最大似然概率方法构建出方程,为最大化方程,利用牛顿梯度上升求解方程参数. 优点:计算代价不高,易于理解和实现. 缺点: ...

  8. 免费SMTP邮件服务:Mandrill,Sendgrid,Mailjet,Postmarkapp,MailChimp

    免费的SMTP发邮件服务平常几乎都没有怎么关注,Wordpress发邮件几乎用普通的邮箱的SMTP服务就可以完成任务,但是自从用了Discourse.Ghost博客后,发现找到一个合适的.免费配额大的 ...

  9. 各种类型的Json格式化

    using System; using System.Collections.Generic; using System.Text; using System.Data; using System.R ...

  10. Redis几种数据类型的应用场景(转)

    原文地址:https://blog.csdn.net/xiaoliuliu2050/article/details/73250708