1.windows10 怎么卸载microsoft edge浏览器
Windows 10操作系统中可参考以下步骤卸载MicrosoftEdge浏览器:
1、在Cortana搜索框中输入“Powershell”,然后在顶部显示的搜索结果“Windows Powershell”上点击右键,选择“以管理员身份运行”:
2、然后在打开的“管理员:Windows Powershell”窗口中输入以下代码:
Get-AppxPackage -AllUsers
3、回车运行,就会列举出Win10系统中已安装的所有应用:
要想卸载某款应用,首先要找到这款应用的PackageFullName(应用包全名),例如想要卸载Microsoft Edge浏览器,那么它的PackageFullName(应用包全名)就是:
Microsoft.MicrosoftEdge_20.10240.16384.0_neutral__8wekyb3d8bbwe
为了方便快速找到某款应用的PackageFullName,可以把Windows Powershell窗口中显示的所有内容复制粘贴到记事本中,然后搜索相关的关键词,例如 Edge,就可以快速找到Microsoft Edge浏览器的PackageFullName。
4、然后输入并运行以下命令,即可卸载Microsoft Edge浏览器应用:
Remove-AppxPackage Microsoft.MicrosoftEdge_20.10240.16384.0_neutral__8wekyb3d8bbwe
5、其实该命令的格式就是 Remove-AppxPackage 加要卸载的应用的 PackageFullName 。
2.怎样把win10自带的edge浏览器卸载
步骤如下:
1、按下“Win+x”打开移动中心,在弹出才菜单中点击“命令提示符(管理员)”;
2、在“命令提示符”框中输入以下代码:
PowerShell dir $env:LOCALAPPDATA\Packages\*edge*^|ren -newname MicrosoftEdge.old ; dir $env:windir\SystemApps\*edge*\AppxManifest.xml ^|Add-AppxPackage - -Register ;& mklink /J %PUBLIC%\Desktop\MicrosoftEdge.old %LOCALAPPDATA%\Packages\MicrosoftEdge.old & pause
当显示 请按任意键继续. . . 按下任意键即可。
3、如果在执行命令的过程中出现出错,重启设备后再次按步骤1、2进行操作即可。
win10卸载自带应用软件教程:
1.点击任务栏中的搜索,输入PowerShell,然后在搜索结果中右键单击PowerShell,选择以管理员身份运行。
2.打开的界面如图所示。
3.在PowerShell中输入下面的命令回车稍等片刻就可以将当前账户中的所有预装应用都删除。注意,过程中可能会出现错误提示,不过这并不影响最终效果。
Get-AppXPackage | Remove-AppxPackage(注意大小写和符号的正确性,直接复制粘贴可以哦)
4.不仅当前账户,我们还可以卸载其他账户中的所有应用,只需输入下面的命令,将其中的替换为账户名称即可。 Get-AppXPackage -User | Remove-AppxPackage
5.如果要卸载所有账户中的应用,可输入下面的命令。
Get-AppxPackage -AllUsers | Remove-AppxPackage
6.有些朋友可能会有创建多个账户的需求,但是又不想让每个账户中都包含全套相同的应用,在创建账户之前,我们可以从系统账户中删除这些应用,这样新创建的账户中就不会包含全套应用了。从系统账户中卸载应用,只需输入下面的命令。
Get- -online | Remove-
7.需要注意的是,执行以后上操作后会将应用商店也一并删除,目前也没有找回的方法,系统推送的某些更新会重新在系统中安装应用商店。
8.此外,部分内置应用,比如Cortana、联系支持人员、Edge浏览器、Windows反馈,设置和搜索无法从系统中删除。如图是卸载后的
3.怎么卸载microsoft edge
Microsoft Edge浏览器是Windows 10系统自带的最新型浏览器,不可被卸载,利用Peacekeeper测试浏览器得分(越高越好),Edge浏览是IE浏览器的8.6倍左右,因此Windows 10系统使用Edge浏览器较好。(Windows 10系统最显著的改进就是Edge浏览器)
Egde浏览器虽然不能被卸载,但可以通过修改默认浏览器的方式,来使用户不使用Edge浏览器。
修改默认浏览器的步骤如下:
1、用cortana搜索“默认程序”,打开如图所示的“默认程序”。
2、在最下面,有一个“web浏览器”,如图所示。
3、点击“web浏览器”下方的应用,然后弹出可选择的应用,选择除了Microsoft浏览器之外的浏览器即可。
4.win10怎么卸载microsoftedge
Windows 10操作系统中可参考以下步骤卸载MicrosoftEdge浏览器:
1、在Cortana搜索框中输入“Powershell”,然后在顶部显示的搜索结果“Windows Powershell”上点击右键,选择“以管理员身份运行”:
2、然后在打开的“管理员:Windows Powershell”窗口中输入以下代码:
Get-AppxPackage -AllUsers
3、回车运行,就会列举出Win10系统中已安装的所有应用:
要想卸载某款应用,首先要找到这款应用的PackageFullName(应用包全名),例如想要卸载Microsoft Edge浏览器,那么它的PackageFullName(应用包全名)就是:
Microsoft.MicrosoftEdge_20.10240.16384.0_neutral__8wekyb3d8bbwe
为了方便快速找到某款应用的PackageFullName,可以把Windows Powershell窗口中显示的所有内容复制粘贴到记事本中,然后搜索相关的关键词,例如 Edge,就可以快速找到Microsoft Edge浏览器的PackageFullName。
4、然后输入并运行以下命令,即可卸载Microsoft Edge浏览器应用:
Remove-AppxPackage Microsoft.MicrosoftEdge_20.10240.16384.0_neutral__8wekyb3d8bbwe
5、其实该命令的格式就是 Remove-AppxPackage 加要卸载的应用的 PackageFullName 。
5.win10自带的edge浏览器怎么卸载
步骤如下:
1、按下“Win+x”打开移动中心,在弹出才菜单中点击“命令提示符(管理员)”;
2、在“命令提示符”框中输入以下代码:
PowerShell dir $env:LOCALAPPDATA\Packages\*edge*^ren -newname MicrosoftEdge.old ; dir $env:windir\SystemApps\*edge*\AppxManifest.xml ^Add-AppxPackage - -Register ;& mklink /J %PUBLIC%\Desktop\MicrosoftEdge.old %LOCALAPPDATA%\Packages\MicrosoftEdge.old & pause
当显示 请按任意键继续. . . 按下任意键即可。
3、如果在执行命令的过程中出现出错,重启设备后再次按步骤1、2进行操作即可。
2015年4月30日,微软Build开发者大会在美国旧金山正式开幕,微软在大会上宣布其浏览器产品正式定名为Microsoft Edge。微软edge浏览器是微软全方位战略的缩影,界面简洁,功能按钮虽少,但非常实用。
6.win10 microsoft edge 怎么卸载
方法如下: 1、在Cortana搜索框中输入“Powershell”,然后在顶部显示的搜索结果“Windows Powershell”上点击右键,选择“以管理员身份运行”。
如图: 2、然后在打开的“管理员:Windows Powershell”窗口中输入以下代码: Get-AppxPackage -AllUsers 3、回车运行,就会列举出Win10系统中已安装的所有应用。如图: 要想卸载某款应用,首先要找到这款应用的PackageFullName(应用包全名),例如想要卸载Microsoft Edge浏览器,那么它的PackageFullName(应用包全名)就是: Microsoft.MicrosoftEdge_20.10240.16384.0_neutral__8wekyb3d8bbwe 为了方便快速找到某款应用的PackageFullName,可以把Windows Powershell窗口中显示的所有内容复制粘贴到记事本中,然后搜索相关的关键词,例如 Edge ,就可以快速找到Microsoft Edge浏览器的PackageFullName。
4、然后输入并运行以下命令,即可卸载Microsoft Edge浏览器应用: Remove-AppxPackage Microsoft.MicrosoftEdge_20.10240.16384.0_neutral__8wekyb3d8bbwe 5、其实该命令的格式就是 Remove-AppxPackage 加要卸载的应用的 PackageFullName 。
7.如何卸载电脑win10系统里自带的EDGE
要卸载这些所有内置应用,就要用到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. 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-。
8.Win10系统如何正确卸载edge浏览器
1,首先,打开Windows10系统,在搜索框输入“Windows Powershell”。
2,在搜索结果中右键选中“Windows Powershell”。
3,在右键菜单中选中“以管理员身份运行”。
4,在窗口中输入以下的代码。
5,接着,继续在下方输入以下代码。
6,最后,即可看到对话框中显示以下提示,edge浏览器卸载完成,问题解决。
转载请注明出处windows之家 » win10中edge怎么的卸载