Microsoft Edge 91.0.825.0 - First version 91 in the dev channel


There is a version change for Microsoft Edge. The dev version received the first 91 version, more precisely the 91.0.825.0. The beta will get version 90 this week and with it all the functions that the dev had so far.

The update seems to take a while. It has not yet arrived here. Will certainly change in the next few minutes.


The new functions in Microsoft Edge 91

  • The ability to read Wikipedia pages in Immersive Reader with support for the built-in table of contents has been added.
  • The rollout of on-demand password generation from the context menu has been completed.
  • Improved reading allows you to skip redundant content on some web pages.
  • A management policy has been added to control whether quick links are enabled for new tab pages.
  • The Chromium management policy to control how long Fetch is kept at shutdown has been enabled.

Improvements

  • A possible crash on startup has been fixed.
  • A crash when searching via the context menu has been fixed.
  • Fixed an issue where the browser task manager would sometimes crash the browser.
  • Fixed an issue where Edge would not start on devices that have certain VMware software installed.
  • Fixed an issue where pinning the web widget would sometimes crash.
  • Other issues fixed: techcommunity

Known problems

  • Except for the VMWare problem that has been resolved, no further changes.
  • Certain extensions, such as B. the Microsoft Editor extension do not work on Linux. Once installed, they will crash and be disabled. We are currently investigating this.
  • Users of certain ad blocker extensions may experience playback errors on Youtube. As a workaround, temporarily disabling the extension should allow playback.
  • Some users still experience an issue where all tabs and extensions immediately crash with a STATUS_INVALID_IMAGE_HASH error. The most common cause of this error is out of date security or antivirus software
  • For users of Kaspersky Internet Suite who have installed the associated extension, websites such as Gmail may sometimes not load. This error occurs because the main Kaspersky software is out of date
  • The deduplication in the Edge Stable should always be given a little more time. Otherwise, favorites are displayed twice.
  • Some users see a "wobble" when scrolling with trackpad gestures or touchscreens, with scrolling in one dimension also causing the page to scroll slightly back and forth in the other dimension. This is most likely related to our ongoing work to bring the scrolling back to parity with Edge Legacy's behavior. So if this behavior is undesirable, you can turn it off temporarily by turning off the edge: // flags / # edge-experimental-scrolling flag.

All Microsoft Edge downloads also insider

Step 1: Uninstall Microsoft Edge using PowerShell or the command prompt

The easiest way is through PowerShell. And that is how it works:

  • In File Explorer, navigate to the path C: \ Program Files (x86) \ Microsoft \ Edge \ Application.
  • Select the current version number here. In the example, open 83.0.478.58 and then the Installer folder
  • The setup.exe is located in this folder
  • Now open the File -> PowerShell -> PowerShell (administrator) tab
  • Enter cmd and press Enter
  • Now enter the command and press Enter:

setup.exe --uninstall --system-level --verbose-logging --force-uninstall

You can also use the command prompt. Here you just have to navigate to the path in the cmd.exe and then enter the command.

Now you may be asked to restart and then Microsoft Edge is uninstalled. The command itself was suitable for the preview versions, but also works brilliantly and without problems with the Edge Canary installed by Microsoft itself.

Step 2: Uninstall Microsoft Edge with a script

We have now tried out whether it is possible to write a bat file with these commands. But it failed because: "The cmd window always closes when it is executed before it reaches the" FOR "command, which the Edge Setup should find automatically"

But it still works like this:

  • Enter the command prompt in the button bar and start as administrator (important!)
  • Copy this content into it and press Enter:

cd% temp% set "programf =% programfiles%" if% PROCESSOR_ARCHITECTURE% == AMD64 set "programf =% programfiles (x86)%" dir / b "% programf% \ Microsoft \ Edge \ Application" | SORT / R> list.txt FOR / F "usebackq delims =="% i IN (list.txt) DO start / WAIT / MIN cmd / c "% programf% \ Microsoft \ Edge \ Application \% i \ Installer \ setup.exe" --uninstall - -system-level --verbose-logging --force-uninstall del list.txt cd% temp% dir / b "% HOMEDRIVE% \ Users"> list.txt FOR / F "usebackq delims =="% i IN (list.txt) DO rd / q / s "% HOMEDRIVE% \ Users \% i \ AppData \ Local \ Microsoft \ Edge \"del list.txt

The second section in the script requests whether the browser data should also be deleted.

You can only execute the first set of commands, both at the same time, or only start the second set of commands separately if you only want to have the browser data deleted.

Post a Comment

0 Comments