2024年11月怎么卸载win10自带应用?一键卸载win10预装软件的方法
⑴怎么卸载win自带应用?在windows 系统中,小编觉得win系统变得有点像手机的安卓系统有点相似,系统安装好后就自带了一些应用程序,如:地图照片日历资讯天气等等,并且无法卸载,通过新版的windows 设置中的“应用和功能”竟然找不到那些自带的应用程序,该如何将其卸载掉呢?在本文中win之家小编给大家分享下一键卸载win预装软件的方法。
⑵卸载自带应用的方法:
⑶在win系统点击任务栏中的搜索框,输入PowerShell,然后在搜索结果中右键单击PowerShell,选择以管理员身份运行,如图所示:
⑷打开windows PowerShell 窗口后输入下面的命令按下回车键即可将所有应用一次性卸载掉:Get-AppXPackage | Remove-AppxPackage
⑸如果你只想卸载某个应用,无需将其全部卸载,则可通过下面对应代码进行卸载:
⑹get-appxpackage -allusers *xbox* | remove-appxpackage
⑺get-appxpackage -allusers *people* | remove-appxpackage
⑻get-appxpackage -allusers *municationsapps* | remove-appxpackage
⑼Groove 音乐
⑽get-appxpackage -allusers *zunemusic* | remove-appxpackage
⑾get-appxpackage -allusers *zunevideo* | remove-appxpackage
⑿get-appxpackage -allusers *bingfinance* | remove-appxpackage
⒀get-appxpackage -allusers *bingnews* | remove-appxpackage
⒁get-appxpackage -allusers *bingsports* | remove-appxpackage
⒂get-appxpackage -allusers *bingweather* | remove-appxpackage
⒃get-appxpackage -allusers *onenote* | remove-appxpackage
⒄get-appxpackage -allusers *alarms* | remove-appxpackage
⒅get-appxpackage -allusers *calculator* | remove-appxpackage
⒆get-appxpackage -allusers *camera* | remove-appxpackage
⒇get-appxpackage -allusers *photos* | remove-appxpackage
⒈get-appxpackage -allusers *maps* | remove-appxpackage
⒉get-appxpackage -allusers *soundrecorder* | remove-appxpackage
⒊要卸载什么只需复制上面对应于代码 在 windows PowerShell窗口中执行即可!
⒋如果要卸载所有账户中的应用,可输入下面的命令:
⒌Get-AppxPackage -AllUsers | Remove-AppxPackage
⒍但如果系统中有多个用户名,从系统账户中卸载应用,只需输入下面的命令。
⒎Get-AppXProvisionedPackage -online | Remove-AppxProvisionedPackage–online
⒏以上就是一键卸载win预装软件的方法,需要的用户可直接复制代码进行操作!