如何卸载win10的自带应用

如何卸载win10的自带应用~

首先我们点击开始按钮。
在他显示的”应用“中如果我们想卸载哪个应用。
我们可以直接选中这个应用然后右击选择”卸载“这样我们就可以很方便卸载了。
方法二,电脑设置中卸载
我们首先点击开始菜单。
在弹出的菜单中我们选择”电脑设置“
在”电脑设置“中我们选择”搜索和应用“
在”搜索和应用“中我们选择”应用大小“
在”应用大小“中我们可以看到我们安装的应用。
例如我想把”闹钟“应用卸载。我们直接点击”闹钟“选择”卸载“就可以了。

步骤:

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自己敲,后面的包名称可以直接复制,当然你可以直接在这里复制过去^^)

方法/步骤

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

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

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

4
要卸载3D,输入
Get-AppxPackage *3d* | Remove-AppxPackage
5
要卸载Camera(相机),输入
Get-AppxPackage *camera* | Remove-AppxPackage
6
要卸载邮件和日历,输入
Get-AppxPackage *communi* | Remove-AppxPackage
7
要卸载新闻订阅,输入
Get-AppxPackage *bing* | Remove-AppxPackage
8
要卸载Groove音乐、电影与电视:
Get-AppxPackage *zune* | Remove-AppxPackage
9
要卸载人脉,输入
Get-AppxPackage *people* | Remove-AppxPackage
10
要卸载手机伴侣(Phone Companion),输入
Get-AppxPackage *phone* | Remove-AppxPackage
11
要卸载照片,输入
Get-AppxPackage *photo* | Remove-AppxPackage
12
要卸载纸牌游戏,输入
Get-AppxPackage *solit* | Remove-AppxPackage
13
要卸载录音机,输入
Get-AppxPackage *soundrec* | Remove-AppxPackage
14
要卸载Xbox,输入
Get-AppxPackage *xbox* | Remove-AppxPackage
15
在卸载Xbox的时候,会提示有很多错误,其实它已经被卸载了,可以不用担心!

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

END
其他信息

卸载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
卸载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

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

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

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

3、

要卸载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
在卸载Xbox的时候,会提示有很多错误,其实它已经被卸载了,可以不用担心!

win10自带软件怎么卸载
答:2.在应用和功能中,您可以选择名称、大小或安装日期作为排序方式③,以及选择所有磁盘驱动器或是特定磁盘驱动器作为筛选依据④。3.或是您也可以在搜寻此列表的字段中输入想要卸载程序的文字(或其中关键词)⑤,您将会在下方列表中看到搜寻结果。4.选取您要移除卸载的应用程序,然后点选[卸载]⑥。

win10怎样卸载自带程序?
答:其次12和11和9是不冲突的,即便你装了12也会附带11和9的dll,只不过这个9和11是最新的9和11而大多数游戏用的是2010年发布的那个9和11,不过一般情况下,不会影响游戏运行。更不会影响祯率。如何卸载win10的自带应用要卸载这些所有内置应用,就要用到Windows PowerShell,它是win10系统自带的一个应用...

win10自带应用能卸掉吗
答:Win10中自带应用可以通过两种方式卸载。第一种方法:1、用Cortana搜索“添加或删除程序”,并打开“添加或删除程序”。2、在右侧找到要卸载的程序,以卸载“应用连接器”为例,点击“应用连接器”,然后点击“卸载”。3、弹出个类似于二级菜单似的窗口,点击“卸载”。4、提示“正在卸载”,稍等一会(视...

win10卸载软件在哪里
答:2.在应用和功能中,您可以选择名称、大小或安装日期作为排序方式③,以及选择所有磁盘驱动器或是特定磁盘驱动器作为筛选依据④。3.或是您也可以在搜寻此列表的字段中输入想要卸载程序的文字(或其中关键词)⑤,您将会在下方列表中看到搜寻结果。4.选取您要移除卸载的应用程序,然后点选卸载⑥。

如何彻底卸载win10自带应用程序
答:工具:电脑,WIN10.方法和步骤:1、开始菜单—所有应用,找到Windows PowerShell,选择“以管理员身份运行”;2、卸载所有用户内置应用的命令为:Get-AppxPackage -AllUsers | Remove-AppxPackage 。 按下回车键即可删除所有内置应用。3、如果只想删除某个应用,只需输入对应命令,按下回车键即可删除。3D...

怎样卸载win10系统内置应用软件
答:win10的自带音乐应用“Groove音乐”是无法通过右键菜单卸载的,但是可以通过WindowsPowerShell命令行卸载,步骤如下:1、用Cortana搜索“PowerShell”,在搜索结果中右键单击“WindowsPowerShell”,选择“以管理员身份运行”2、输入命令“Get-AppxPackage-AllUsers”,按下回车,PS会列出系统中所有已安装应用...

Win10自带应用怎么卸载
答:工具:电脑,WIN10 方法和步骤:1、搜索栏中输入“PowerShell”,在搜索结果中右键单击PowerShell,选择“以管理员身份运行”。2、在PowerShell窗口中,输入“Get-AppXPackage | Remove-AppxPackage”回车确认,然后等待系统自动将当前账户中的所有预装应用都删除即可。3、如果要卸载某个应用,只需输入对应...

卸载Win10自带应用的简单方法
答:1.在电脑上下载安装一个【Dism++最新版】,然后将其解压,并点击打开,然后根据系统运行的是X64位程序还是X86程序进行操作。2.然后打开在页面左侧点击【AppX管理】,就可以考科一看到系统自带的应用和应用所占的空间。3.选择自己的需要删除的应用,点击删除就可以了。以上就是关于卸载Win10自带应用的简单...

win10更新后怎么卸载自带程序?
答:2、在打开的控制面板窗口中,找到并点击“程序和功能”图标。3、这时会打开程序和功能窗口,点击左侧边栏的“启用或关闭Windows功能”菜单项。4、这时就会打开Windows10的功能窗口,在这里可以启动或是关闭Windows功能。5、在打开的Windows功能窗口中选中要卸载的应用,把其前面的勾选去掉,然后点击确定按钮。

IT评价网,数码产品家用电器电子设备等点评来自于网友使用感受交流,不对其内容作任何保证

联系反馈
Copyright© IT评价网