[DISCUSSION] Microsoft Edge

Discussion in 'Application Software' started by SAM-R, Mar 18, 2019.

  1. kaljukass

    kaljukass MDL Guru

    Nov 26, 2012
    3,396
    1,322
    120
    This flag has not been there around for a long time, as it is available in settings.
    ask_before.JPG
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  2. Stripakulina

    Stripakulina MDL Member

    Jul 19, 2009
    203
    509
    10
    kaljukass, it was in previous version and can' be activated without that flag, and Edge must be restarted. But in the new build i couldn't it. Now i see this setting. You made my day, Thank you very much! :)
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  3. kaljukass

    kaljukass MDL Guru

    Nov 26, 2012
    3,396
    1,322
    120
    What is "previous version" and what is "current version" for You.
    I have always had current/latest/latter etc version and it has been there and is there also now. And as much as I know, the very latest version is 93.0.961.38, released as stable versin on 2022-09-02 at 18:43:00 UTC
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  4. Stripakulina

    Stripakulina MDL Member

    Jul 19, 2009
    203
    509
    10
    kaljukass, "previous" was 92.0.902.84 (flag worked), "current" is 93.0.961.38 ( flag doesn't work but needed setting is appeared without flag now). I'm used to always using this flag. so when i couldn't find it, it seemed to me as this feature was removed or forgotten.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  5. kaljukass

    kaljukass MDL Guru

    Nov 26, 2012
    3,396
    1,322
    120
    Yes I checked, it is true that in version 92.0.902.84 this flag existed (strange, it has long been announced that it will be removed from there, I guess it was in April). But it was also on the menu of version 92.0.902.84.
    In fact, its existence is not necessary at all. Whenever you make a mistake, you can open all closed tables with Ctrl + Shift + T, of course, as long as you haven't deleted the previous session's history.
    Now it's available in settings and everyone can turn it on or off as he/she like. I like to turn off all useless widgets and features. Always and for ever.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  6. Stripakulina

    Stripakulina MDL Member

    Jul 19, 2009
    203
    509
    10
    I know Edge opens closed pages but habit is second nature :D Anyway problem solved; thanks a lot!
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  7. SM03

    SM03 MDL Expert

    Dec 16, 2012
    1,405
    605
    60
    Earlier, there was a trick that has found & shared by @abbodi1406 (placing blank MSFT folder in Programme file, to block the new chromium-based EDGE to be installed in a clean installation or after installing the LCU, that worked for some time, but now, for 21H2, it is not working

    so, any new trick/workaround to block the MS EDGE (chromium) to be installed while installing W10 via clean installation method or installing the LCU for every month patch Tuesday?
     
  8. nosirrahx

    nosirrahx MDL Expert

    Nov 7, 2017
    1,245
    592
    60
    Has anyone tried the same thing but also altering the permissions? Maybe also create dummy files as well with permissions set to deny everything? Maybe take things up a notch and NTFS encryption (that green file name trick) to block overwriting?
     
  9. crypticus

    crypticus MDL Senior Member

    Jun 29, 2015
    317
    142
    10
    i placed abbodi's removal script as task to windows start, does the job never seen edge for months. but i'm not sure about windows 11 it seems edge will be needed for some things
     
  10. Carlos Detweiller

    Carlos Detweiller Emperor of Ice-Cream

    Dec 21, 2012
    6,349
    7,068
    210
    @abbodi1406 posted a change proposal for the script running on Windows 11 somewhere, in order to not remove Webview2.

    Here's the one I use for Windows 11 that doesn't remove the Webview component:

    Code:
    @setlocal DisableDelayedExpansion
    @echo off
    if defined PROCESSOR_ARCHITEW6432 start %SystemRoot%\Sysnative\cmd.exe /c "%0 " &exit
    reg.exe query "HKU\S-1-5-19" 1>nul 2>nul || (echo Run the script as administrator&goto :TheEnd)
    
    set "u_path=%LocalAppData%\Microsoft"
    set "s_path=%ProgramFiles(x86)%\Microsoft"
    if /i %PROCESSOR_ARCHITECTURE%==x86 (if not defined PROCESSOR_ARCHITEW6432 (
      set "s_path=%ProgramFiles%\Microsoft"
      )
    )
    
    @cls
    if /I $%1==$FORCE goto autoyes
    echo.
    choice /C YN /N /M "Microsoft Edge Chromium will be uninstalled. Continue? [y/n]: "
    if errorlevel 2 exit
    
    :autoyes
    reg delete "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Microsoft Edge" /v NoRemove /f 2>nul
    reg delete "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Microsoft Edge" /v NoRemove /f 2>nul
    reg delete "HKLM\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\Microsoft Edge" /v NoRemove /f 2>nul
    
    echo.
    for /D %%i in ("%u_path%\Edge SxS\Application\*") do if exist "%%i\installer\setup.exe" (
    echo Canary...
    start "" /w "%%i\installer\setup.exe" --uninstall --msedge-sxs --verbose-logging --force-uninstall --delete-profile
    )
    for /D %%i in ("%u_path%\Edge Internal\Application\*") do if exist "%%i\installer\setup.exe" (
    echo Internal...
    start "" /w "%%i\installer\setup.exe" --uninstall --msedge-internal --verbose-logging --force-uninstall --delete-profile
    )
    for /D %%i in ("%u_path%\Edge Dev\Application\*") do if exist "%%i\installer\setup.exe" (
    echo Dev...
    start "" /w "%%i\installer\setup.exe" --uninstall --msedge-dev --verbose-logging --force-uninstall --delete-profile
    )
    for /D %%i in ("%u_path%\Edge Beta\Application\*") do if exist "%%i\installer\setup.exe" (
    echo Beta...
    start "" /w "%%i\installer\setup.exe" --uninstall --msedge-beta --verbose-logging --force-uninstall --delete-profile
    )
    for /D %%i in ("%u_path%\Edge\Application\*") do if exist "%%i\installer\setup.exe" (
    echo Stable...
    start "" /w "%%i\installer\setup.exe" --uninstall --verbose-logging --force-uninstall --delete-profile
    )
    for /D %%i in ("%s_path%\Edge\Application\*") do if exist "%%i\installer\setup.exe" (
    echo Stable...
    start "" /w "%%i\installer\setup.exe" --uninstall --system-level --verbose-logging --force-uninstall --delete-profile
    )
    for /D %%i in ("%s_path%\Edge Beta\Application\*") do if exist "%%i\installer\setup.exe" (
    echo Beta...
    start "" /w "%%i\installer\setup.exe" --uninstall --msedge-beta --system-level --verbose-logging --force-uninstall --delete-profile
    )
    for /D %%i in ("%s_path%\Edge Dev\Application\*") do if exist "%%i\installer\setup.exe" (
    echo Dev...
    start "" /w "%%i\installer\setup.exe" --uninstall --msedge-dev --system-level --verbose-logging --force-uninstall --delete-profile
    )
    for /D %%i in ("%s_path%\Edge Internal\Application\*") do if exist "%%i\installer\setup.exe" (
    echo Internal...
    start "" /w "%%i\installer\setup.exe" --uninstall --msedge-internal --system-level --verbose-logging --force-uninstall --delete-profile
    )
    
    if exist "%ProgramFiles(x86)%\Microsoft\Edge\" rmdir /s /q "%ProgramFiles(x86)%\Microsoft\Edge"
    if exist "%ProgramFiles(x86)%\Microsoft\EdgeUpdate\" rmdir /s /q "%ProgramFiles(x86)%\Microsoft\EdgeUpdate"
    if exist "%ProgramFiles%\Microsoft\Edge\" rmdir /s /q "%ProgramFiles%\Microsoft\Edge"
    if exist "%ProgramFiles%\Microsoft\EdgeUpdate\" rmdir /s /q "%ProgramFiles%\Microsoft\EdgeUpdate"
    if exist "%AppData%\Microsoft\Internet Explorer\Quick Launch\Microsoft Edge*.lnk" del /f /q "%AppData%\Microsoft\Internet Explorer\Quick Launch\Microsoft Edge*.lnk"
    if exist "%SystemRoot%\System32\config\systemprofile\AppData\Roaming\Microsoft\Internet Explorer\Quick Launch\Microsoft Edge*.lnk" del /f /q "%SystemRoot%\System32\config\systemprofile\AppData\Roaming\Microsoft\Internet Explorer\Quick Launch\Microsoft Edge*.lnk"
    if exist "%UserProfile%\Desktop\Microsoft Edge.lnk" del /f /q "%UserProfile%\Desktop\Microsoft Edge.lnk"
    if exist "%APPDATA%\Microsoft\Windows\Start Menu\Programs\Microsoft Edge.lnk" del /f /q "%APPDATA%\Microsoft\Windows\Start Menu\Programs\Microsoft Edge.lnk"
    
    reg add "HKLM\SOFTWARE\Microsoft\EdgeUpdate" /v DoNotUpdateToEdgeWithChromium /t REG_DWORD /d 1 /f 1>nul
    
    if /I $%1==$FORCE exit
    
    :TheEnd
    echo.
    echo Press any key to exit.
    pause >nul
    exit
     
  11. AveYo

    AveYo MDL Expert

    Feb 10, 2009
    1,836
    5,693
    60
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  12. Chibi ANUBIS

    Chibi ANUBIS MDL Chibi Developer

    Apr 28, 2014
    1,237
    911
    60
    Hello !
    I have a Windows 10 1903, I can't update for many reason,
    can I install the new Edge in ? I try the msu update and I get a install error...

    Thanks in advance :)
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  13. kaljukass

    kaljukass MDL Guru

    Nov 26, 2012
    3,396
    1,322
    120
    #2874 kaljukass, Oct 6, 2021
    Last edited: Oct 6, 2021
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  14. Chibi ANUBIS

    Chibi ANUBIS MDL Chibi Developer

    Apr 28, 2014
    1,237
    911
    60
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  15. kaljukass

    kaljukass MDL Guru

    Nov 26, 2012
    3,396
    1,322
    120
    Very interesting, it's the 2020-10 Cumulative Update for Windows 10 Version 1903, but you asked for the Edge installation.
    Besides, we have October 6 or 7, 2021 today (6 or 7, it depends on the geographical location).
    Very strange.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  16. spanishfly

    spanishfly MDL Senior Member

    Dec 5, 2018
    352
    527
    10
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  17. kaljukass

    kaljukass MDL Guru

    Nov 26, 2012
    3,396
    1,322
    120
    I'm trying to understand your thoughts, but it seems to be getting difficult. It seems to me that you have not yet discovered that Windows 11 does not have only one Edge installed, and it is not located in one place only. There are a minimum of two of them, and you use one of them when you look at the web, but the other one initially works mostly for webview, ie msedgewebview2 is the main one used there.
    But I've also seen situations where even three Edges are installed in different locations, and there have been situations where these are different versions of Edge, which in turn means that they also have bugs in the upgrade system and not all are updated automatically and regularly. This way, you can get notifications that Edge needs an upgrade even if you've just completed the upgrade process. It happens, because in registry are still both (or even more) data about installed Edge.True, this all has so far only occurred in different versions of Windows 11. In Windows 10 no such a things and such a problems, there is only one Edge and usually one place of installation and everything works well.
    So I don't think it's a good idea to invent anything as long as it's not clear how Edge will be located in Windows 11 and what it will do there.
    PS, don't forget, IE is still there, but I haven't researched what it still does.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  18. AveYo

    AveYo MDL Expert

    Feb 10, 2009
    1,836
    5,693
    60
    #2879 AveYo, Nov 13, 2021
    Last edited: Nov 13, 2021
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  19. spanishfly

    spanishfly MDL Senior Member

    Dec 5, 2018
    352
    527
    10
    #2880 spanishfly, Nov 13, 2021
    Last edited: Nov 13, 2021
    I can only speak for my own nerves, which are stable enough to deal with pop-ups!

    I was composing a reply to @kaljukass, when your post appeared. I hope this is a case of "code speaking louder than words" and your reply clarifies for @kaljukass's benefit what my I was trying to express in English sentences.

    Thank you for your ongoing efforts to 'tame the Edge beast'
    I will check out your code offerings ASAP.

    P.S. ChrEdgeFkOff :cool:
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...