zoukankan      html  css  js  c++  java
  • win10 内置软件经常不用,还占空间?如何轻松卸载

    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

  • 相关阅读:
    基于C语言的高斯曲线拟合原理以及实现【转】
    高斯曲线拟合原理及实现
    软件测试Lab2————用selenium进行自动化测试
    软件测试作业四 —— 课后习题七及扩展
    软件测试作业三—— 上机实验判断三角形的类型
    软件项目管理作业一 —— 描述项目
    软件测试作业二 —— 对于Faults,Errors,Failures的认识的习题
    软件测试作业一 —— 记录我遇到的项目error
    The introduction about my project.
    课程表WPF制作 学习步骤三
  • 原文地址:https://www.cnblogs.com/zxfei/p/10693227.html
Copyright © 2011-2022 走看看