1、开始菜单点击所有应用,找到Windows PowerShell,右击鼠标选择“以管理员身份运行”。
2、卸载所有用户内置应用的命令为:Get-AppxPackage -AllUsers | Remove-AppxPackage 。 按下回车键即可删除所有内置应用。
3、如果只删除某个应用,只需输入对应命令,按下回车键即可删除。
命令如下:
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
步骤:
1、启动PowerShell:在搜索框里输入“powershell”,在标记为“桌面应用”的“Windows PowerShell”上右键,选择“以管理员身份运行”命令;
2,以管理员身份运行PowerShell
3、在打开的PowerShell窗口中输入“Get-AppxPackage | Select Name,
PackageFullName”(注意空格和英文标点),查看已安装应用的清单;
4、查找要卸载的应用,可以按“Ctrl+F”来查找,比如我要卸载系统自带的“照片”应用,可以通过“Ctrl+F”输入“photo”来查找,按“查找下一个”按钮就能找到了。
5,一个应用的信息有很多,我们需要的只有一个,就是“PackageFullName”,包的名称。把后面的名称“Microsoft.Windows.Photos_15.803.16240.0_x64__8wekyb3d8bbwe”复制下来。
6,在控制台输入命令“Remove-AppxPackage
Microsoft.Windows.Photos_15.803.16240.0_x64__8wekyb3d8bbwe”回车键,等待片刻就卸载完了。(前面的Remove-AppxPackage自己敲,后面的包名称可以直接复制,当然你可以直接在这里复制过去^^)
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)