Windows prohibits IE from automatically jumping to Edge "integration solution"

foreword

IE has been merged into the Edge browser, IE "officially buried" RESPECT

​ Last night, after the company's system update (Edge) was completed, all the RPAs that were normally running were offline. The reasons are as follows:

insert image description here

​ When I woke up in the morning, it was another day full of hope, so I searched and read a few articles (not to say that it is invalid, but it is not applicable to personal scenarios (system version problems, Edge version problems, etc.)), In the end, I found several useful solutions, which are now integrated and kept as a backup

​ The reason for integrating multiple solutions is that there are different usage scenarios, such as automation, manual operation, scripting, etc...


[1] Option 1 (the test is valid)

Directly delete the files in the BHO folder under Edge

C:\Program Files (x86)\Microsoft\Edge\Application\110.0.1587.50\BHO

110.0.1587.50 is the version number

Disadvantage: After Edge is updated, it needs to be deleted again (not tested)


[2] Solution 2 (not tested)

Execute the unregister dll command

cd /d C:\Program Files (x86)\Microsoft\Edge\Application\110.0.1587.50\BHO
regsvr32 /u ie_to_edge_bho.dll
regsvr32 /u ie_to_edge_bho_64.dll

[3] Option 3 (test is valid)

Modify the registry: use the disable (one-click registry modification) tool

"Original tool" Prohibit IE browser from jumping to Edge tool (support win11)


[4] Solution 4 (not tested)

Modify the registry: save as "*.reg" file, double-click to run

Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Ext\CLSID]
"{1FD49718-1D00-4B19-AF5F-070AF6D5D54C}"="0"
[HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Policies\Ext\CLSID]
"{1FD49718-1D00-4B19-AF5F-070AF6D5D54C}"="0"

[5] Option five (valid test)

Run VBScript: save as *.vbs run

CreateObject("InternetExplorer.Application").Visible=true

[6] Scheme 6 (test is valid)

  1. Create Shortcut
  2. Shortcut right click - properties - target (T):"C:\Program Files\Internet Explorer\iexplore.exe" anything -Embedding
  3. The shortcut is renamed to:iexplore.exe

reference article

Guess you like

Origin blog.csdn.net/Kideers/article/details/131192568