1.如何卸载windows10 自带的软件
单击开始菜单中的“所有应用”,然后找到Windows Power Shell的文件夹,右键单击Windows PowerShell(注意不是Windows PowerShell ISE),然后单击以管理员身份运行,就打开了。打开了Windows PowerShell,就开始输入命令了
1、要卸载OneNote,在里面输入
Get-AppxPackage *OneNote* | Remove-AppxPackage
可以复制,回车执行
2、要卸载3D,输入
Get-AppxPackage *3d* | Remove-AppxPackage
3、要卸载Camera(相机),输入
Get-AppxPackage *camera* | Remove-AppxPackage
4、要卸载邮件和日历,输入
Get-AppxPackage *communi* | Remove-AppxPackage
5、要卸载新闻订阅,输入
Get-AppxPackage *bing* | Remove-AppxPackage
6、要卸载Groove音乐、电影与电视:
Get-AppxPackage *zune* | Remove-AppxPackage
7、要卸载人脉,输入
Get-AppxPackage *people* | Remove-AppxPackage
8、要卸载手机伴侣(Phone Companion),输入
Get-AppxPackage *phone* | Remove-AppxPackage
9、要卸载照片,输入
Get-AppxPackage *photo* | Remove-AppxPackage
10、要卸载纸牌游戏,输入
Get-AppxPackage *solit* | Remove-AppxPackage
11、要卸载录音机,输入
Get-AppxPackage *soundrec* | Remove-AppxPackage
12、要卸载Xbox,输入
Get-AppxPackage *xbox* | Remove-AppxPackage
在卸载Xbox的时候,会提示有很多错误,其实它已经被卸载了
2.win10自带软件怎么卸载
Win10正式版今日已推送,不少用户已经成功升级。Win10正式版自带了一些Modern版应用,打开开始菜单一大片,怎么卸载这些自带应用呢?其实微软提供了快速卸载所有应用的方法,借助内置的PowerShell可达到这一目的。下面是详细图解。
Win10自带应用卸载方法
1、点击任务栏中的搜索,输入PowerShell,然后在搜索结果中右键单击PowerShell,选择以管理员身份运行。
2、在PowerShell中输入下面的命令回车稍等片刻就可以将当前账户中的所有预装应用都删除。注意,过程中可能会出现错误提示,不过这并不影响最终效果。
Get-AppXPackage | Remove-AppxPackage
3、不仅当前账户,我们还可以卸载其他账户中的所有应用,只需输入下面的命令,将其中的《username》替换为账户名称即可。
Get-AppXPackage -User 《username》 | Remove-AppxPackage
如果要卸载所有账户中的应用,可输入下面的命令。
Get-AppxPackage -AllUsers | Remove-AppxPackage
有些朋友可能会有创建多个账户的需求,但是又不想让每个账户中都包含全套相同的应用,在创建账户之前,我们可以从系统账户中删除这些应用,这样新创建的账户中就不会包含全套应用了。从系统账户中卸载应用,只需输入下面的命令。
Get- -online | Remove-–online
需要注意的是,执行以后上操作后会将应用商店也一并删除,目前也没有找回的方法,系统推送的某些更新会重新在系统中安装应用商店。另外,部分内置应用,比如Cortana、联系支持人员、Edge浏览器、Windows反馈,设置和搜索无法从系统中删除。
3.如何卸载win10自带offece
工具:电脑,WIN10
方法和步骤:
1,进入系统点击桌面“控制面板”打开。
2,打开“控制面板”。点击“卸载程序“。
3,打开的卸载程序窗口找到需要卸载的office软件,然后右击--卸载即可。
或者点击office软件,点击标题上的“卸载”进行操作。
4.win10怎么卸载自带软件 win10自带应用卸载方法
1、打开小娜,在搜索框中输入“PowerShell”,以管理员身份运行“Windows PowerShell”。 2、我们首先把所有应用显示出来,在控制台输入命令“Get-AppxPackage”回车键,所有应用信息就都显示出来了。
3、查找要卸载的应用,可以按“Ctrl+F”来查找,比如我要卸载系统自带的“照片”应用,可以通过“Ctrl+F”输入“photo”来查找,按“查找下一个”按钮就能找到了。
4、一个应用的信息有很多,我们需要的只有一个,就是“PackageFullName”,包的名称。把后面的名称“Microsoft.Windows.Photos_15.803.16240.0_x64__8wekyb3d8bbwe”复制下来。
5、在控制台输入命令“Remove-AppxPackage Microsoft.Windows.Photos_15.803.16240.0_x64__8wekyb3d8bbwe”回车键,等待片刻就卸载完了。(前面的Remove-AppxPackage自己敲,后面的包名称可以直接复制,当然你可以直接在这里复制过去^^)
6、打开开始菜单,我们发现照片应用就被删除了,从此我们的开始菜单看的顺眼了。
7、大家可以通过此方法继续卸载其他应用,比如视频,直接搜索“Video”,复制命令进行删除,自己敲的话一定要注意大小写,控制台是区分大小写的,写错了就无法删除哟。
win10卸载自带应用方法二:
如果你嫌上面的步骤太麻烦,我们这次来个简单的,所有应用的删除命令已经给大家整理好了,直接复制到控制台就可以删除了,不用一个一个找,命令如下:
邮件和日历:
Get-AppxPackage *communi* | Remove-AppxPackage
新闻:
Get-AppxPackage *bing* | Remove-AppxPackage
人脉:
Get-AppxPackage *people* | Remove-AppxPackage
照片:
Get-AppxPackage *photo* | Remove-AppxPackage
纸牌游戏:
Get-AppxPackage *solit* | Remove-AppxPackage
录音机:
Get-AppxPackage *soundrec* | Remove-AppxPackage
Xbox:
Get-AppxPackage *xbox* | Remove-AppxPackage
OneNote:
Get-AppxPackage *OneNote* | Remove-AppxPackage
3D Builder:
Get-AppxPackage *3d* | Remove-AppxPackage
Camera相机:
Get-AppxPackage *camera* | Remove-AppxPackage
Groove音乐:
Get-AppxPackage *zune* | Remove-AppxPackage
注意事项
建议大家直接复制命令,因为控制台区分大小写,手打的话容易出错。
以上就是win10如何卸载自带应用方法介绍,大家可以根据自己的情况来选择适合自己的方法,希望能对大家有所帮助!
5.怎么卸载win10自带应用 工具
1. 点击开始——所有程序——Windows PowerShell2. 打开Windows PowerShell窗口之后,开始输入命令。
3. 命令的格式为: Get-AppxPackage *OneNote* | Remove-AppxPackage ↑星号内的是应用名 4.回车应用对应的名称:OneNote:Get-AppxPackage *OneNote* | Remove-AppxPackage3D:Get-AppxPackage *3d* | Remove-AppxPackageCamera相机:Get-AppxPackage *camera* | Remove-AppxPackage邮件和日历:Get-AppxPackage *communi* | Remove-AppxPackage新闻订阅:Get-AppxPackage *bing* | Remove-AppxPackageGroove音乐、电影与电视: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-AppxPackageXbox:Get-AppxPackage *xbox* | Remove-AppxPackage注:卸载Xbox是会提示错误,表示卸载成功。英文提示:PS C:\WINDOWS\system32> Get-AppxPackage *xbox* | Remove-AppxPackageRemove-AppxPackage : Deployment failed with HRESULT: 0x80073CFA, Removal failed. Please contact your software vendor.(Exception from HRESULT: 0x80073CFA)error 0x80070032: AppX Deployment Remove operation on packageMicrosoft.XboxGameCallableUI_1000.10240.16384.0_neutral_neutral_cw5n1h2txyewy from:C:\Windows\SystemApps\Microsoft.XboxGameCallableUI_cw5n1h2txyewy failed. This app is part of Windows and cannot beuninstalled on a per-user basis. An administrator can attempt to remove the app from the computer using Turn WindowsFeatures 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 usethe command line Get-AppxLog -ActivityID 1d60accb-cb8d-0003-d5b8-601d8dcbd001At 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.-AppxPackage : Deployment failed with HRESULT: 0x80073CFA, Removal failed. Please contact your software vendor.(Exception from HRESULT: 0x80073CFA)error 0x80070032: AppX Deployment Remove operation on packageMicrosoft.XboxIdentityProvider_1000.10240.16384.0_neutral_neutral_cw5n1h2txyewy from:C:\Windows\SystemApps\Microsoft.XboxIdentityProvider_cw5n1h2txyewy failed. This app is part of Windows and cannot beuninstalled on a per-user basis. An administrator can attempt to remove the app from the computer using Turn WindowsFeatures 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 usethe command line Get-AppxLog -ActivityID 1d60accb-cb8d-0001-d9b9-601d8dcbd001At 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.中文提示:PS C:\windows\system32> Get-AppxPackage *xbox* | Remove-AppxPackageRemove-AppxPackage : 部署失败,原因是 HRESULT: 0x80073CFA, 无法卸载。
请联系你的软件供应商。 (异常来自 HRESULT:0x80073CFA)错误 0x80070032: C:\Windows\SystemApps\Microsoft.XboxGameCallableUI_cw5n1h2txyewy 中的程序包 Microsoft.XboxGameCallableUI_1000.10240.16384.0_neutral_neutral_cw5n1h2txyewy 上的 AppX 部署 删除 操作失败。
此应用是 Windows 的一部分,无法针对每个用户卸载该应用。管理员可以尝试使用“启用或关闭 Windows 功能”从计算机中删除该应用。
不过,该应用可能无法被卸载。注: 有关其他信息,请在事件日志中查找 [ActivityId] 84d12a44-dbe5-0000-0557-d184e5dbd001,或使用命令行 Get-AppxLog -ActivityID 84d12a44-dbe5-0000-0557-d184e5dbd001所在位置 行:1 字符: 26+ Get-AppxPackage *xbox* | Remove-AppxPackage+ ~~~~~~~~~~~~~~~~~~ + CategoryInfo : WriteError: (Microsoft.XboxG。
l_cw5n1h2txyewy:String) [Remove-AppxPackage], IOException + FullyQualifiedErrorId : DeploymentError,。
6.怎样删除win10系统自带软件
这里首先按下键盘的“win+x"然后界面中点击windows powershell【管理员】打开。
这里我们首先打开想要卸载的应用。这里小编先打开系统的XBOX应用。
然后我们在任务栏的空白处单击鼠标右键,然后点击打开任务管理器。
任务管理器中我们在打开的XBOX应用上单击鼠标右键,选择属性打开。
这时候在属性中我们常规里面将这里的名字复制到电脑记事本中或者浏览器的搜索框中,一会我们会用到。
现在我们打开我们刚才打开的windows powershell界面。不要着急。
现在我们在记事本中在刚才复制文件名前面添加命令Remove-AppxPackage,然后将这里所有的内容复制粘贴到windows powershell界面。回车!
我们等待命令执行完毕,现在我们打开开始菜单看看效果。已经卸载成功。
转载请注明出处windows之家 » 如何卸载win10自带数位板