• Windows driver UCPD stops non-Microsoft software from setting default

    From Allan Higdon@21:1/5 to All on Tue Apr 9 11:54:44 2024
    "Microsoft has integrated the driver userChoice Protection Driver, short UCPD, into Windows 10 and Windows 11 systems recently. This driver has just one purpose: to block access to UserChoice Registry keys."

    https://www.ghacks.net/2024/04/08/new-sneaky-windows-driver-ucdp-stops-non-microsoft-software-from-setting-defaults/

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Allan Higdon@21:1/5 to All on Tue Apr 9 17:15:14 2024
    I disabled the UCPD driver and task, as it instructs you in the post.
    I will no longer be installing Updates - for me only Cumulative Updates.
    I should have known better.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From VanguardLH@21:1/5 to Allan Higdon on Tue Apr 9 15:13:07 2024
    Allan Higdon <allanh@vivaldi.net> wrote:

    "Microsoft has integrated the driver userChoice Protection Driver,
    short UCPD, into Windows 10 and Windows 11 systems recently. This
    driver has just one purpose: to block access to UserChoice Registry
    keys."

    https://www.ghacks.net/2024/04/08/new-sneaky-windows-driver-ucdp-stops-non-microsoft-software-from-setting-defaults/

    Once someone figures out how to undo a Microsoft protection, sometime
    later Microsoft counters by changing how to implement the protection.

    UserChoice is a hash added to filetype and protocol handlers considered critical which are defined in the registry. Started in Windows 8.
    Previously users, programs, and *malware* could change those handler assignments, but then MS added the hash which supposedly only Windows
    knew how to create a valid string. If the UserChoice hash string was
    invalid or deleted, Windows would delete it, revert to the default
    handler, and create UserChoice again. Windows was protecting the
    handler assignment. That meant users had to use the Windows Default
    Apps wizard, or when using Open With (pick an app, and make it the
    default), to change filetype or protocol handler assignments (not on all
    of them, just those considered critical) which knew how to create a
    valid hash string.

    In the past, there was often an option within a program to change the
    default handler associations to that program. That stopped working.
    When the UserChoice protection showed up, you could enable the option in
    a program to make it the default, but that didn't happen. Later the
    apps updated to jump to the Default Apps wizard where you had to figure
    out how to set defaults to that program.

    Besides using a hash string for which Microsoft assumed only Windows
    would know the algorithm, permissions were set on the UserChoice key to
    prevent casual change or delete. However, since Windows accounts in the Administrators security group have full permissions, and since the
    majority of users log into admin accounts, this method really only
    protected against tampering by guest/non-admin Windows accounts.

    Well, someone came up with a way to defeat UserChoice. SetUserFTA is an example (mentioned in a linked article in the ghacks article). This
    subverts the UserChoice protecting the handler assignment. The author
    figured out how Windows was generating the hash (I think he discovered
    how to find the root key in a Windows installation used to generate the
    hash), and duplicated the hash algorithm in his program. So, Microsoft
    updated the protection to include protecting the UserChoice key.
    Protect the protection.

    I don't mind the protection on the protection using UserChoice. I
    dislike programs that rudely change handler without asking you (aka the
    battle over associations). I don't mind an app taking me to the Default
    Apps wizard to change a handler. I prefer apps, especially malware,
    cannot willy-nilly programmatically change handlers. However, as noted
    (and tested by you), anyone running under an admin-level Windows account
    can run sc.exe to disable the service, and that includes malware.

    Disabling the Task Scheduler event "UCPD Velocity" is mostly for
    thoroughness. The scheduled call to UCPDmgr.exe trying to use the
    disabled service will generate an error in the event log.

    Note: Even if you disable the service and scheduled event, Microsoft can
    still push out an update that reenables them, or redefines them (if you
    delete them instead of disabled them). You undo. They redo.

    Next Microsoft will have to protect the service that protects the
    UserChoice entries that protect the handler associations. Geesh. More security means less user choices. Security and convenience are the
    anti-thesis of each other: more of one means less of the other.

    Not much nuisance to an end user. Just use the Default Apps wizard
    you've had to use since Windows 8. More a nuisance to sysadmins trying
    to deploy policies across lots of corporate workstations.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From John C.@21:1/5 to VanguardLH on Wed Apr 10 05:19:20 2024
    VanguardLH wrote:
    Allan Higdon <allanh@vivaldi.net> wrote:

    "Microsoft has integrated the driver userChoice Protection Driver,
    short UCPD, into Windows 10 and Windows 11 systems recently. This
    driver has just one purpose: to block access to UserChoice Registry
    keys."

    https://www.ghacks.net/2024/04/08/new-sneaky-windows-driver-ucdp-stops-non-microsoft-software-from-setting-defaults/

    Once someone figures out how to undo a Microsoft protection, sometime
    later Microsoft counters by changing how to implement the protection.

    UserChoice is a hash added to filetype and protocol handlers considered critical which are defined in the registry. Started in Windows 8.
    Previously users, programs, and *malware* could change those handler assignments, but then MS added the hash which supposedly only Windows
    knew how to create a valid string. If the UserChoice hash string was
    invalid or deleted, Windows would delete it, revert to the default
    handler, and create UserChoice again. Windows was protecting the
    handler assignment. That meant users had to use the Windows Default
    Apps wizard, or when using Open With (pick an app, and make it the
    default), to change filetype or protocol handler assignments (not on all
    of them, just those considered critical) which knew how to create a
    valid hash string.

    In the past, there was often an option within a program to change the
    default handler associations to that program. That stopped working.
    When the UserChoice protection showed up, you could enable the option in
    a program to make it the default, but that didn't happen. Later the
    apps updated to jump to the Default Apps wizard where you had to figure
    out how to set defaults to that program.

    Besides using a hash string for which Microsoft assumed only Windows
    would know the algorithm, permissions were set on the UserChoice key to prevent casual change or delete. However, since Windows accounts in the Administrators security group have full permissions, and since the
    majority of users log into admin accounts, this method really only
    protected against tampering by guest/non-admin Windows accounts.

    Well, someone came up with a way to defeat UserChoice. SetUserFTA is an example (mentioned in a linked article in the ghacks article). This
    subverts the UserChoice protecting the handler assignment. The author figured out how Windows was generating the hash (I think he discovered
    how to find the root key in a Windows installation used to generate the hash), and duplicated the hash algorithm in his program. So, Microsoft updated the protection to include protecting the UserChoice key.
    Protect the protection.

    I don't mind the protection on the protection using UserChoice. I
    dislike programs that rudely change handler without asking you (aka the battle over associations). I don't mind an app taking me to the Default
    Apps wizard to change a handler. I prefer apps, especially malware,
    cannot willy-nilly programmatically change handlers. However, as noted
    (and tested by you), anyone running under an admin-level Windows account
    can run sc.exe to disable the service, and that includes malware.

    Disabling the Task Scheduler event "UCPD Velocity" is mostly for thoroughness. The scheduled call to UCPDmgr.exe trying to use the
    disabled service will generate an error in the event log.

    Note: Even if you disable the service and scheduled event, Microsoft can still push out an update that reenables them, or redefines them (if you delete them instead of disabled them). You undo. They redo.

    Next Microsoft will have to protect the service that protects the
    UserChoice entries that protect the handler associations. Geesh. More security means less user choices. Security and convenience are the anti-thesis of each other: more of one means less of the other.

    Not much nuisance to an end user. Just use the Default Apps wizard
    you've had to use since Windows 8. More a nuisance to sysadmins trying
    to deploy policies across lots of corporate workstations.

    Good reply, VanguardLH. And very clear. I read the gHacks article the
    day before yesterday, and reacted much the same as Allan and a lot of
    other people. I replied something to that effect, which is in the
    replies on that page. However, I didn't take the steps mentioned in the
    article to disable UCPD ("User Choice Protection Driver".) Something
    told me to hold off and to read the replies, which I did yesterday.

    After doing so, in the end I decided to allow the driver to do its thing
    and only try to find a way to subvert it if it actually interferes with
    a legitimate program attempting to establish a necessary file
    association. Another scenario would be if Microsoft were to attempt to
    force me to use one of their programs instead of something I prefer, eg.
    Edge instead of Firefox.

    I'm not happy about the way clicking on a link in Settings can sometimes
    open a website in Edge, but oh well. Going with W10 on this computer has required me to accept a lot of compromises, tweaks and workarounds.

    Anyway, thanks again very much for your well-written reply, VanguardLH.

    --
    John C. No ad, CD, cripple, demo, nag, pay, pirated, share, spy,
    time-limited, trial or web wares for me please.

    So that I don't see them, I filter out crossposts (messages sent to
    multiple newsgroups at a time) and from various trolls (like "Bill
    Bennett".)
    If you do the same, the group will be easier for you to read.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From wasbit@21:1/5 to John C. on Thu Apr 11 09:29:38 2024
    On 10/04/2024 13:19, John C. wrote:
    snip <

    I'm not happy about the way clicking on a link in Settings can sometimes
    open a website in Edge, but oh well. Going with W10 on this computer has required me to accept a lot of compromises, tweaks and workarounds.


    Lots of articles on how to remove Edge from Windows 10 as well as eg

    Stop edge from opening links and use default browser (link may wrap)
    - https://answers.microsoft.com/en-us/windows/forum/all/stop-edge-from-opening-links-and-use-default/5b406294-46f1-44df-acb2-d366c0cb1816

    --
    Regards
    wasbit

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From John C.@21:1/5 to wasbit on Thu Apr 11 03:45:12 2024
    wasbit wrote:
    On 10/04/2024 13:19, John C. wrote:
    snip <

    I'm not happy about the way clicking on a link in Settings can sometimes
    open a website in Edge, but oh well. Going with W10 on this computer has
    required me to accept a lot of compromises, tweaks and workarounds.


    Lots of articles on how to remove Edge from Windows 10 as well as eg

    Stop edge from opening links and use default browser (link may wrap)
     - https://answers.microsoft.com/en-us/windows/forum/all/stop-edge-from-opening-links-and-use-default/5b406294-46f1-44df-acb2-d366c0cb1816

    Thanks, but there really wasn't a lot of info in that discussion. And
    I've already got Firefox set to be my default browser. That doesn't stop
    Edge from creeping in and opening certain links.

    M$ should have learned from the EU when they tried to shove IE down
    everybody's collective throats by using the exact, same excuse that the
    program was too "highly integrated into the system".

    I predict that eventually, the same thing is going to happen to them for forcing Edge on everybody.

    And while I'm talking about it, has anybody checked out the extensions
    which are available for Edge? They're a joke. There's almost nothing
    there which is of any use.

    --
    John C. No ad, CD, cripple, demo, nag, pay, pirated, share, spy,
    time-limited, trial or web wares for me please.

    So that I don't see them, I filter out crossposts (messages sent to
    multiple newsgroups at a time) and from various trolls (like "Bill
    Bennett".)
    If you do the same, the group will be easier for you to read.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Stan Brown@21:1/5 to John C. on Thu Apr 11 09:34:48 2024
    On Thu, 11 Apr 2024 03:45:12 -0700, John C. wrote:
    And while I'm talking about it, has anybody checked out the extensions
    which are available for Edge? They're a joke. There's almost nothing
    there which is of any use.

    [in robotic voice] Edge extensions not needed -- Edge already perfect
    as shipped -- resistance futile



    --
    Stan Brown, Tehachapi, California, USA https://BrownMath.com/
    Shikata ga nai...

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Paul@21:1/5 to Stan Brown on Thu Apr 11 14:59:30 2024
    On 4/11/2024 12:34 PM, Stan Brown wrote:
    On Thu, 11 Apr 2024 03:45:12 -0700, John C. wrote:
    And while I'm talking about it, has anybody checked out the extensions
    which are available for Edge? They're a joke. There's almost nothing
    there which is of any use.

    [in robotic voice] Edge extensions not needed -- Edge already perfect
    as shipped -- resistance futile

    Pretty futile.

    But Neo is on the case.

    https://kolbi.cz/blog/2024/04/03/userchoice-protection-driver-ucpd-sys/

    Paul

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From John C.@21:1/5 to Stan Brown on Sat Apr 13 04:26:18 2024
    Stan Brown wrote:
    On Thu, 11 Apr 2024 03:45:12 -0700, John C. wrote:
    And while I'm talking about it, has anybody checked out the extensions
    which are available for Edge? They're a joke. There's almost nothing
    there which is of any use.

    [in robotic voice] Edge extensions not needed -- Edge already perfect
    as shipped -- resistance futile

    https://i.imgur.com/iSL7CWs.gif

    --
    John C.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From John C.@21:1/5 to All on Sat Apr 13 04:48:38 2024
    ...w¡ñ§±¤ñ wrote:
    John C. wrote:

    M$ should have learned from the EU when they tried to shove IE down
    everybody's collective throats by using the exact, same excuse that the
    program was too "highly integrated into the system".

    The EU agreement regarding IE as browser was not adjudicated on
    'integration into the system' but a "Choice Screen"[through the Windows Update engine]enabling users of Windows XP, Windows Vista and Windows 7
    to choose which web browser(s) they want to install in addition to, or instead of, Microsoft's browser Internet Explorer.
     - the extent of integration was only considered in the preliminary
    review by the EU. Integration was eventually not challenged, the focus
    and final agreement was on 'choice' for users(and only those in the
    European Economic Area).

    The excuse given by M$ was (paraphrased) that Explorer was too tightly integrated into the Windows OS. They integrated it like that so that
    they could use that excuse. I clearly remember reading that this was the
    case. That it wasn't adjudicated on that excuse is another issue. I was
    only saying that this was a reason M$ gave publically.

    The Choice option was limited to 5 yrs(ended in 2014), thereafter the 'Choice' feature was removed, but continuing the user's ability to
    install a browser of their choice and configure it as default.  The
    second part of the EU/MSFT agreement was to allow OEM computer
    manufacturers to install other available browsers and turn IE Explorer
    off(a marginal few chose to do so).  The ability to turn IE off did not
    need to be added to the O/S, it already existed in the o/s(at OEM and
    end user level) before and after the agreement.

    I predict that eventually, the same thing is going to happen to them for
    forcing Edge on everybody.

    Doubtful, since choice still exists. Also unlikely that the EU will ever revisit something similiar regarding Edge(or akin to your
    premise/perceived excuse via integration into the o/s) nor Microsoft o/s included apps defaulting to use Edge.

    Yeah, you're probably correct. I think it would be a safe assumption
    that the previous resulting solution was the result of many greased
    palms. This, almost certainly will be the result if another case is ever opened. Perhaps it's already happened.

    Regardless, I always detest it whenever Edge opens up. I also detest the
    way the program continually updates in the background like W10 itself.
    It's possible to turn all of that off, and I will eventually do so. It's
    also possible to completely uninstall Edge, another W10 update could
    reinstall it.

    In the mean time:

    https://www.theverge.com/23935029/microsoft-edge-forced-windows-10-google-chrome-fight

    https://www.lifewire.com/experts-worry-microsoft-forcing-edge-on-us-is-just-the-beginning-5210142

    https://finance.yahoo.com/news/microsoft-forcing-people-latest-browser-154232700.html

    https://www.inc.com/jason-aten/microsoft-is-trying-to-force-you-to-use-its-software-like-its-1998-all-over-again.html

    etc.

    --
    John C.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From VanguardLH@21:1/5 to John C. on Sat Apr 13 19:01:57 2024
    "John C." <r9jmg0@yahoo.com> wrote:

    The excuse given by M$ was (paraphrased) that Explorer was too tightly integrated into the Windows OS. They integrated it like that so that
    they could use that excuse.

    explorer.exe is the desktop manager. Seems obvious why it would also be
    a file manager. Back in Win 9x days (when using 2 kernels: Win9X and
    MS-DOS), you could replace the desktop manager with your choice. I
    haven't bothered since then to see if anyone still bothers trying to
    come up with their own replacement desktop manager (rather than just add
    to the existing one).

    Or do you say "Explorer" meaning instead Internet Explorer? That was "integrated" because it provide many libs that other programs could use
    called HTA (HTML Applications). In the same way C runtimes and libs
    were provided, and then .NET Framework, DirectX, and so on, apps didn't
    have to start from scratch to get all those functions. (https://en.wikipedia.org/wiki/HTML_Application)

    Regardless, I always detest it whenever Edge opens up.

    What else do you have that has been coded to support the
    microsoft-edge:// URI scheme? ANY program can define its own protocol
    scheme. Norton has done it, so have other programs. When the URI
    scheme is called, the handler for it gets used.

    https://textslashplain.com/2022/07/18/edge-url-schemes/

    Lots of URI schemes are either defined by IANA, or are private for use
    by particular programs.

    https://en.wikipedia.org/wiki/List_of_URI_schemes https://www.iana.org/assignments/uri-schemes/uri-schemes.xhtml

    No program must use a registered or well-known URI scheme. Any program
    can define a URI scheme that is unique to its use. Whether that is
    Microsoft, or someone else, ANYONE can define a URI scheme to specify
    whatever handler for it they want to use.

    Go into Default Apps, and click on "Choose default apps by protocol".
    Scroll down to see a whole bunch or URI schemes defined for Microsoft
    and MS, including MICROSOFT-EDGE (URL:microsoft-edge). When scrolling
    through the list, you might find you have installed non-Microsoft
    software that has added their own URI scheme. I remember decades ago
    when Symantec added some to facilitate calling their HTAs.

    All a site, like Microsoft, or help links in Windows have to use is an ms-edge:// URI scheme, and that will call the Edge web browser. There
    have been attempts to redirect ms-edge URI to https:, so you could try
    those. That is, there are redirector tools that will make
    microsoft-edge:// URLs open in the default web browser instead of Edge.

    Note that any redirector is working only on the URI scheme. It is still possible a program calls the Edge program to load a URL instead of
    relying on a URI scheme to pick a handler.

    I also detest the way the program continually updates in the
    background like W10 itself. It's possible to turn all of that off,
    and I will eventually do so. It's also possible to completely
    uninstall Edge, another W10 update could reinstall it.

    Oh, you mean like how Mozilla lets you disable updates, but then nags
    you about updating disabled?

    For disabling updates to MS Edge, read:

    https://winaero.com/how-to-disable-updates-in-microsoft-edge/

    I have the WinAero Tweaker tool, so I can just disable there instead of
    having to following the above instructions. In short, a firewall rule
    blocks MicrosoftEdgeUpdate.exe from connecting out.

    Unlikely any update from Microsoft is going to hunt around the rules in
    the Windows Firewall, or whichever one you use, looking for a block on
    the MicrosoftEdgeUpdate.exe program. However, more likely is that
    Microsoft will change the program file that connects out to get an
    update, so the firewall rule on the old .exe won't apply to the new .exe
    file.

    Another method is to define a group policy that disables updates to
    Edge. However, Home edition users of Windows don't have the Group
    Policy Editor (gpedit.msc). All policies are registry entries, so they
    can still be defined by editing the registry. The Winaero article also mentions the registry setting, but doesn't supply .reg files to make it
    easy to enable/disable the policy.

    If you /look/, there are lots of online articles on how to disable
    updates to MS Edge. For example, some will mention disabling the
    "Microsoft Edge Update Service (edgeupdate)" you see in services.msc.
    Alas, as you mention, it is possible for a later date to reenable (if
    you disabled it) or redefine the service (if you deleted it). That
    service runs the MicrosoftEdgeUpdate.exe program that the firewall rule
    will block.

    Of course, when you decide to update MS Edge, you'll have to remember
    how to undo what you did before to disable updates.

    In the mean time: https://www.theverge.com/23935029/microsoft-edge-forced-windows-10-google-chrome-fight
    https://www.lifewire.com/experts-worry-microsoft-forcing-edge-on-us-is-just-the-beginning-5210142
    https://finance.yahoo.com/news/microsoft-forcing-people-latest-browser-154232700.html
    https://www.inc.com/jason-aten/microsoft-is-trying-to-force-you-to-use-its-software-like-its-1998-all-over-again.html

    Just a bunch of bashing by those that don't know they do have choices.
    "Any color they customer wants as long as it is black" (attributed to
    Henry Ford, but never said by him). Didn't stop customers from painting
    their cars. Just they didn't want to bother doing so. MS wants you to
    use Edge. Yeah, how's that a big surprise? Every vendor wants you
    using their stuff. How is this a big surprise?

    Don't know about you, but I always want a secondary or backup web
    browser that is configured very minimally. If I have problems visiting
    a site using my primary web browser (Firefox), I have the secondary one
    to check if the problem is with my primary web browser. I want a second opinion on web surfing ills. MS Edge is better than Google Chrome.
    There are more security features in Edge than in Chrome. Some features
    missing in Chrome, like change focus to a newly opened tab, that require installing an add-on are built into Edge. For sites that won't render propertly using Firefox's Gecko engine, I can try using Edge's Blink
    renderer. For example, I cannot submit a review for Walmart purchases
    when using Firefox no matter how much I neuter Firefox, but I can when
    using a Chrome variant, like Edge. There are sites that are
    deliberately coded to work with Blink (Chrome) that won't work with
    other rendering engines (Gecko in Firefox). The same for sites that
    don't work 100% when using Firefox's JS script interpreter versus V8 in [variants of] Chrome.

    I want a backup or secondary web browser that uses a completely
    different rendering engine and script interpreter than in Firefox. When Microsoft switch from their EdgeHTML rendering engine and Jscript
    interpreter to Blink and V8, and supported Chrome add-ons, I got rid of
    Chrome (and a lot of remnant file and registry cleanup), and move to MS
    Edge-C as my secondary web browser. More secure, more configuration.
    If you want more, there's Vivaldi.

    No one web browser is 100% usable everywhere. Two using different
    rendering engines and script interpreters give you a better chance of compatibility.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Paul@21:1/5 to VanguardLH on Sat Apr 13 22:43:21 2024
    On 4/13/2024 8:01 PM, VanguardLH wrote:

    Just a bunch of bashing by those that don't know they do have choices.

    They have fewer practical choices.

    My browser is frequently met with "the frozen screen and you
    should update your browser", on pages which are not rich in
    content in any way. In other words, if I was on a Linux
    discussion forum page, and it's just full of text, the website
    feels it's important that "I get the best text experience
    by using a monopolist browser".

    If your browser magically does not work, it's not much
    of a candidate. My browser was actually "updated" a week
    ago, so it's not exactly "old". That is not the reason
    that multiple web sites pull this schtick.

    Paul

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From John C.@21:1/5 to VanguardLH on Sun Apr 14 05:59:56 2024
    VanguardLH wrote:
    John C. wrote:

    The excuse given by M$ was (paraphrased) that Explorer was too tightly
    integrated into the Windows OS. They integrated it like that so that
    they could use that excuse.

    explorer.exe is the desktop manager. Seems obvious why it would also be
    a file manager. Back in Win 9x days (when using 2 kernels: Win9X and MS-DOS), you could replace the desktop manager with your choice. I
    haven't bothered since then to see if anyone still bothers trying to
    come up with their own replacement desktop manager (rather than just add
    to the existing one).

    My apologies. I meant Internet Exporer. Since I didn't use and loathed
    the program, it's name was backburnered in my memory.

    Or do you say "Explorer" meaning instead Internet Explorer? That was "integrated" because it provide many libs that other programs could use called HTA (HTML Applications). In the same way C runtimes and libs
    were provided, and then .NET Framework, DirectX, and so on, apps didn't
    have to start from scratch to get all those functions. (https://en.wikipedia.org/wiki/HTML_Application)

    Regardless, I always detest it whenever Edge opens up.

    What else do you have that has been coded to support the
    microsoft-edge:// URI scheme? ANY program can define its own protocol scheme. Norton has done it, so have other programs. When the URI
    scheme is called, the handler for it gets used.

    AFAIK, I have nothing else installed that does this.

    https://textslashplain.com/2022/07/18/edge-url-schemes/

    Lots of URI schemes are either defined by IANA, or are private for use
    by particular programs.

    https://en.wikipedia.org/wiki/List_of_URI_schemes https://www.iana.org/assignments/uri-schemes/uri-schemes.xhtml

    No program must use a registered or well-known URI scheme. Any program
    can define a URI scheme that is unique to its use. Whether that is Microsoft, or someone else, ANYONE can define a URI scheme to specify whatever handler for it they want to use.

    Go into Default Apps, and click on "Choose default apps by protocol".
    Scroll down to see a whole bunch or URI schemes defined for Microsoft
    and MS, including MICROSOFT-EDGE (URL:microsoft-edge). When scrolling through the list, you might find you have installed non-Microsoft
    software that has added their own URI scheme. I remember decades ago
    when Symantec added some to facilitate calling their HTAs.

    All a site, like Microsoft, or help links in Windows have to use is an ms-edge:// URI scheme, and that will call the Edge web browser. There
    have been attempts to redirect ms-edge URI to https:, so you could try
    those. That is, there are redirector tools that will make
    microsoft-edge:// URLs open in the default web browser instead of Edge.

    Note that any redirector is working only on the URI scheme. It is still possible a program calls the Edge program to load a URL instead of
    relying on a URI scheme to pick a handler.

    I also detest the way the program continually updates in the
    background like W10 itself. It's possible to turn all of that off,
    and I will eventually do so. It's also possible to completely
    uninstall Edge, another W10 update could reinstall it.

    Oh, you mean like how Mozilla lets you disable updates, but then nags
    you about updating disabled?

    For disabling updates to MS Edge, read:

    https://winaero.com/how-to-disable-updates-in-microsoft-edge/

    I have the WinAero Tweaker tool, so I can just disable there instead of having to following the above instructions. In short, a firewall rule
    blocks MicrosoftEdgeUpdate.exe from connecting out.

    Unlikely any update from Microsoft is going to hunt around the rules in
    the Windows Firewall, or whichever one you use, looking for a block on
    the MicrosoftEdgeUpdate.exe program. However, more likely is that
    Microsoft will change the program file that connects out to get an
    update, so the firewall rule on the old .exe won't apply to the new .exe file.

    Another method is to define a group policy that disables updates to
    Edge. However, Home edition users of Windows don't have the Group
    Policy Editor (gpedit.msc). All policies are registry entries, so they
    can still be defined by editing the registry. The Winaero article also mentions the registry setting, but doesn't supply .reg files to make it
    easy to enable/disable the policy.

    If you /look/, there are lots of online articles on how to disable
    updates to MS Edge. For example, some will mention disabling the
    "Microsoft Edge Update Service (edgeupdate)" you see in services.msc.
    Alas, as you mention, it is possible for a later date to reenable (if
    you disabled it) or redefine the service (if you deleted it). That
    service runs the MicrosoftEdgeUpdate.exe program that the firewall rule
    will block.

    Of course, when you decide to update MS Edge, you'll have to remember
    how to undo what you did before to disable updates.

    In the mean time:
    https://www.theverge.com/23935029/microsoft-edge-forced-windows-10-google-chrome-fight
    https://www.lifewire.com/experts-worry-microsoft-forcing-edge-on-us-is-just-the-beginning-5210142
    https://finance.yahoo.com/news/microsoft-forcing-people-latest-browser-154232700.html
    https://www.inc.com/jason-aten/microsoft-is-trying-to-force-you-to-use-its-software-like-its-1998-all-over-again.html

    Just a bunch of bashing by those that don't know they do have choices.
    "Any color they customer wants as long as it is black" (attributed to
    Henry Ford, but never said by him). Didn't stop customers from painting their cars. Just they didn't want to bother doing so. MS wants you to
    use Edge. Yeah, how's that a big surprise? Every vendor wants you
    using their stuff. How is this a big surprise?

    Don't know about you, but I always want a secondary or backup web
    browser that is configured very minimally. If I have problems visiting
    a site using my primary web browser (Firefox), I have the secondary one
    to check if the problem is with my primary web browser. I want a second opinion on web surfing ills. MS Edge is better than Google Chrome.
    There are more security features in Edge than in Chrome. Some features missing in Chrome, like change focus to a newly opened tab, that require installing an add-on are built into Edge. For sites that won't render propertly using Firefox's Gecko engine, I can try using Edge's Blink renderer. For example, I cannot submit a review for Walmart purchases
    when using Firefox no matter how much I neuter Firefox, but I can when
    using a Chrome variant, like Edge. There are sites that are
    deliberately coded to work with Blink (Chrome) that won't work with
    other rendering engines (Gecko in Firefox). The same for sites that
    don't work 100% when using Firefox's JS script interpreter versus V8 in [variants of] Chrome.

    I want a backup or secondary web browser that uses a completely
    different rendering engine and script interpreter than in Firefox. When Microsoft switch from their EdgeHTML rendering engine and Jscript
    interpreter to Blink and V8, and supported Chrome add-ons, I got rid of Chrome (and a lot of remnant file and registry cleanup), and move to MS Edge-C as my secondary web browser. More secure, more configuration.
    If you want more, there's Vivaldi.

    No one web browser is 100% usable everywhere. Two using different
    rendering engines and script interpreters give you a better chance of compatibility.

    Thanks for your reply, VanguardLH. And as for browsers, I also have
    Firefox and Vivaldi installed. I use Vivaldi to access a local store's
    website and that's about all I use it for.

    --
    John C.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Newyana2@21:1/5 to Paul on Sun Apr 14 09:04:56 2024
    On 4/13/2024 10:43 PM, Paul wrote:
    On 4/13/2024 8:01 PM, VanguardLH wrote:

    Just a bunch of bashing by those that don't know they do have choices.

    They have fewer practical choices.

    My browser is frequently met with "the frozen screen and you
    should update your browser", on pages which are not rich in
    content in any way.

    I just got that yesterday in a strange scenario. I was downloading
    MSI drivers and a BIOS update. There was a "billboard" saying that they recommend downloading via Chrome or Edge. That looks to me like
    some kind of conspiring strategy to kill Mozilla. Google and MS conspiring?
    I don't know. It's also a kind of false advertising, leading people to
    believe that only Chrome or Edge works properly.

    On my own site I'm now seeing mostly Chrom*. Though there also
    seems to be a lot of spoofing. I see MacOSX10 with Edge. I also see
    someone from Belarus with "Trident 7, like Gecko". :)

    The primary reason I updated to Win10 was broken webpages. Now
    I still see a lot of broken pages. Far too many are broken without script.
    It's gradually turning into a kiosk Internet where we're expected to
    be leaking personal info constantly while we watch ads.

    I had installed Ungoogled Chromium as a backup for FF, but after
    setting it up I decided that it was just too messed up. No menu. No
    titlebar. No bookmarks menu. Precious few settings of any kind.

    The second worst thing about Chrome,
    after the spying, is the nonsensical forced UI designed for cellphone
    screens. I can only guess that far more people are on cellphones now
    than on computers; and that when they occasionally sit down to a
    computer their eyes search frantically for hamburger menu icons.

    So after years of using 2 browsers, I now have only one. FF. All
    the Chrom* versions are shit. I have no intention of even looking at
    Edge. Uninstalling that was one of the first things I did. IE doesn't
    seem to work, even though the WebBrowser control works just fine.
    (On XP I liked to make IE the default and then block it from going
    online, as a way to prevent local webpages from wandering. My
    Registry actually says in HKLM that IE is in charge of HTML files, but
    nothing loads if I double-click iexplore.exe.)

    The FF variants are not useful. Some, like Pale Moon, are outdated.
    Others, like Waterfox, seem to offer nothing that's not in Firefox.
    Someone should have developed a Google-free Chrome with proper
    settings and a Desktop UI by now. The fact that no one has seems
    to point to how much Google have always been able to dupe the
    geeks, ever since they climbed over each other to get a gmail
    "invitation".

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Newyana2@21:1/5 to All on Sun Apr 14 09:17:37 2024
    John C. wrote:

    The excuse given by M$ was (paraphrased) that Explorer was too tightly integrated into the Windows OS. They integrated it like that so that
    they could use that excuse. I clearly remember reading that this was the case. That it wasn't adjudicated on that excuse is another issue. I was
    only saying that this was a reason M$ gave publically.

    Maybe you're thinking of the 90s cases? In one of those
    MS were claiming they couldn't make IE removable. That was
    the famous case of inventing Active Desktop with integrated
    IE in order to "cut off Netscape's air supply".

    I remember reading a Wired article from that time. MS had
    reporters in and showed how they intended to make Windows
    itself reliant on a browser window. The reporter rightly guessed
    that it would spell doom for Netscape. Personally I loved it. It
    allowed me to design my own custom folder windows by writing
    an HTML file.

    Bill Gates and his gang had gone overboard in
    thinking that Desktops would now be on the Internet. He was
    way off and before his time, simultaneously. But the browser
    integration was fun, and HTAs are still useful for lightweight
    applets.

    In the later case there was talk of breaking up MS. It came
    close, backed by the Feds and something like 20 attorneys
    general. But then Bush Jr became president and the case was
    dropped. Bush promised to stop hassling corporations and
    start auditing the tax returns of those low income people who
    were taking the country to the cleaners. :)

    There was also a case that I don't remember clearly now.
    I seem to remember that MS had to provide a Media
    Player-free option in the EU.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Frank Slootweg@21:1/5 to mayayana@invalid.nospam on Sun Apr 14 15:00:25 2024
    Newyana2 <mayayana@invalid.nospam> wrote:
    [...]

    On my own site I'm now seeing mostly Chrom*. Though there also
    seems to be a lot of spoofing. I see MacOSX10 with Edge. I also see
    someone from Belarus with "Trident 7, like Gecko". :)

    I don't know about [Mac] OS X 10 specifically, i.e. rather 'old'
    versions, but Edge *is* available on macOS:

    <https://www.microsoft.com/en-us/edge/download>

    [...]

    The second worst thing about Chrome,
    after the spying, is the nonsensical forced UI designed for cellphone screens. I can only guess that far more people are on cellphones now
    than on computers; and that when they occasionally sit down to a
    computer their eyes search frantically for hamburger menu icons.

    What *are* you babbling about? The Windows version of Chrome doesn't
    have a smartphone-like UI at all and doesn't have a "hamburger menu
    icon".

    As usual: Don't emit nonsense about stuff you don't even use.

    [...]

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Allan Higdon@21:1/5 to John C. on Sun Apr 14 13:32:01 2024
    On Sun, 14 Apr 2024 07:59:56 -0500, John C. <r9jmg0@yahoo.com> wrote:

    Thanks for your reply, VanguardLH. And as for browsers, I also have
    Firefox and Vivaldi installed. I use Vivaldi to access a local store's website and that's about all I use it for.

    Has your opinion of Vivaldi changed since you upgraded to Win10?
    You posted the following in the ACF newsgroup in August.

    "Vivaldi is WAY faster at rendering websites than Firefox. Not only that, but it's able to correctly render websites that Firefox has a problem with.

    IMO at least, Vivaldi is the Firefox replacement that I've been looking for. Even if it is Chromium based."

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From John C.@21:1/5 to All on Sun Apr 14 19:37:55 2024
    Newyana2 wrote:
    Paul wrote:
    VanguardLH wrote:

    Just a bunch of bashing by those that don't know they do have choices.

    They have fewer practical choices.

    My browser is frequently met with "the frozen screen and you
    should update your browser", on pages which are not rich in
    content in any way.

      I just got that yesterday in a strange scenario. I was downloading
    MSI drivers and a BIOS update. There was a "billboard" saying that they recommend downloading via Chrome or Edge. That looks to me like
    some kind of conspiring strategy to kill Mozilla. Google and MS conspiring?
    I don't know. It's also a kind of false advertising, leading people to believe that only Chrome or Edge works properly.

      On my own site I'm now seeing mostly Chrom*. Though there also
    seems to be a lot of spoofing. I see MacOSX10 with Edge. I also see
    someone from Belarus with "Trident 7, like Gecko". :)

       The primary reason I updated to Win10 was broken webpages. Now
    I still see a lot of broken pages. Far too many are broken without script. It's gradually turning into a kiosk Internet where we're expected to
    be leaking personal info constantly while we watch ads.

    Too true. I fear that the internet may suffer the same fate as cable TV.
    Check out the 1989 movie "How to Get Ahead in Advertising".

      I had installed Ungoogled Chromium as a backup for FF, but after
    setting it up I decided that it was just too messed up. No menu. No
    titlebar. No bookmarks menu. Precious few settings of any kind.

        The second worst thing about Chrome,
    after the spying, is the nonsensical forced UI designed for cellphone screens. I can only guess that far more people are on cellphones now
    than on computers; and that when they occasionally sit down to a
    computer their eyes search frantically for hamburger menu icons.

       So after years of using 2 browsers, I now have only one. FF. All
    the Chrom* versions are shit. I have no intention of even looking at
    Edge. Uninstalling that was one of the first things I did. IE doesn't
    seem to work, even though the WebBrowser control works just fine.
    (On XP I liked to make IE the default and then block it from going
    online, as a way to prevent local webpages from wandering. My
    Registry actually says in HKLM that IE is in charge of HTML files, but nothing loads if I double-click iexplore.exe.)

    The FF variants are not useful. Some, like Pale Moon, are outdated.
    Others, like Waterfox, seem to offer nothing that's not in Firefox.
    Someone should have developed a Google-free Chrome with proper
    settings and a Desktop UI by now. The fact that no one has seems
    to point to how much Google have always been able to dupe the
    geeks, ever since they climbed over each other to get a gmail
    "invitation".

    You might want to take a look at Vivaldi. If I ever give up on Firefox,
    that's what I'll go with. It's an un-Googled Chrome browser. Today I was
    able to install every extension that I'm using in Firefox into Vivaldi.
    That is, they're all ported to the Chrome based browsers. Only one
    Firefox extension wasn't available, and I decided that life would
    continue without it.

    --
    John C.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From John C.@21:1/5 to Allan Higdon on Sun Apr 14 19:46:46 2024
    Allan Higdon wrote:
    On Sun, 14 Apr 2024 07:59:56 -0500, John C. <r9jmg0@yahoo.com> wrote:

    Thanks for your reply, VanguardLH. And as for browsers, I also have
    Firefox and Vivaldi installed. I use Vivaldi to access a local store's
    website and that's about all I use it for.

    Has your opinion of Vivaldi changed since you upgraded to Win10?
    You posted the following in the ACF newsgroup in August.

    Heh. I just posted a reply to one of Newyana2' messages and said that if
    I ever give up on Firefox, Vivaldi is what I'll go with.

    "Vivaldi is WAY faster at rendering websites than Firefox. Not only
    that, but it's able to correctly render websites that Firefox has a
    problem with.

    IMO at least, Vivaldi is the Firefox replacement that I've been looking
    for. Even if it is Chromium based."

    I still stand by that statement. And I had Vivaldi installed right up
    until I went with W10, at which point I reinstalled it. Today I added a
    bunch of extensions to it.

    The program has a couple of bugs I've noticed though. If I ever get
    time, I'll report them to the developers.

    --
    John C.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From John C.@21:1/5 to All on Sun Apr 14 19:49:11 2024
    Newyana2 wrote:

    John C. wrote:

    The excuse given by M$ was (paraphrased) that Explorer was too tightly
    integrated into the Windows OS. They integrated it like that so that
    they could use that excuse. I clearly remember reading that this was the
    case. That it wasn't adjudicated on that excuse is another issue. I was
    only saying that this was a reason M$ gave publically.

        Maybe you're thinking of the 90s cases? In one of those
    MS were claiming they couldn't make IE removable. That was
    the famous case of inventing Active Desktop with integrated
    IE in order to "cut off Netscape's air supply".

    Yeah, that was the one all right.

      I remember reading a Wired article from that time. MS had
    reporters in and showed how they intended to make Windows
    itself reliant on a browser window. The reporter rightly guessed
    that it would spell doom for Netscape. Personally I loved it. It
    allowed me to design my own custom folder windows by writing
    an HTML file.

       Bill Gates and his gang had gone overboard in
    thinking that Desktops would now be on the Internet. He was
    way off and before his time, simultaneously. But the browser
    integration was fun, and HTAs are still useful for lightweight
    applets.

      In the later case there was talk of breaking up MS. It came
    close, backed by the Feds and something like 20 attorneys
    general. But then Bush Jr became president and the case was
    dropped. Bush promised to stop hassling corporations and
    start auditing the tax returns of those low income people who
    were taking the country to the cleaners. :)

      There was also a case that I don't remember clearly now.
    I seem to remember that MS had to provide a Media
    Player-free option in the EU.

    --
    John C.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Newyana2@21:1/5 to All on Mon Apr 15 08:46:31 2024
    On 4/14/2024 2:39 PM, ...w¡ñ§±¤ñ wrote:

    Windows was updated to disable IE use and open Edge unless for a
    specific url if configured to 'Allow IE mode' for sites that requires IE
    and optionally Edge's IE mode option to add a url to specifically use IE mode.
     - IE mode is supported until 2029

    Thanks. I didn't know that.

    The HKLM reg key you referenced is a place-holder or orphan.
     - Care to provide that HKLM key full registry path name?

    The traditional keys. HKCR\.htm and .html both point to
    HKCR\htmlfile, which is set up as a set of keys and values for
    IE. (Interesting fun fact: LibreOffice set up values for
    "StarOffice" there.)

    I didn't know until recently that MS changed that system
    and now reads, if present, HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\ FileExts\[.xyz]\UserChoice to get the classname for the extension.

    So HKCR\.html points to htmlfile and IE. The UserChoice key
    points to FirefoxHTML-xxxxxx. From there it apparently goes
    back to HKCR. The Firefox classname doesn't show up under
    HKCU\Classes.

    I quickly got used to using the Registry directly because I've
    often done it in the past and the first time I opened the Settings
    defaults window I found a broken system. It only displays programs
    registered for specific filetypes. So first I had to choose to select
    by file type. Then when I selected the file type it just told me
    there was no program for that... or it didn't offer the program I
    wanted.

    Microsoft have managed to create the perfect settings window:
    It refuses to let people change settings, under the guise of unlimited
    choice, leaving the computer user feeling stupid. They haven't made
    such a brilliant move since hiding the IE cookie settings behind a
    button marked "Advanced".

    And, of course, with IE all of your settings could be overridden
    without you being able to see it, by any IT person or software.
    This all goes back to the problematic design of passing off a lackey workstation OS as an OS for people who own their computer.

    The browser choices for htm, html are shown in:
     Settings/Apps/Default Apps/Choose defaults by file type
    or
     Settings/Apps/Default Apps/<choose any installed browser>/<then scroll
    down for the htm, html current default>


    Yes. So I venture into Microsoft's ugly-ass and barely functional
    Metro forest, find default apps, find filetypes, got to .7z, for example,
    and the only choice is Hamster. Hamster? I don't remember ever installing anything called Hamster. I certainly don't have it now. I do have 7-Zip,
    but I can't choose it.

    Presumably MS created this mess to prevent 3rd-party
    programs from taking over file types. I've never had a problem
    with that, except for the old days when IE and Netscape
    would both screw up the Registry without asking.

    What MS have really created is a system that all but forces
    their defaults. The unspoken assumption is that ALL 3rd-prty
    programs are a kind of pollution on Windows.

    To use another program, the installed program
    has to have set the requisite Registry values to show up as
    a possible default program. Or I can go to right-click ->
    Open With, which offers only the mysterious Hamster program
    for .7z files. If I ask for more choices I get a random selection
    of registered programs that are all irrelevant. If I then ask for
    still more options I still don't see 7-Zip. I have to browse for
    it. And of course, .01% of people will get that far. So they're
    stuck with what MS gives them.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Newyana2@21:1/5 to John C. on Mon Apr 15 09:02:59 2024
    On 4/14/2024 10:37 PM, John C. wrote:

       The primary reason I updated to Win10 was broken webpages. Now
    I still see a lot of broken pages. Far too many are broken without script. >> It's gradually turning into a kiosk Internet where we're expected to
    be leaking personal info constantly while we watch ads.

    Too true. I fear that the internet may suffer the same fate as cable TV. Check out the 1989 movie "How to Get Ahead in Advertising".

    I'll look that up. I've never heard of it. But my 4 streaming accounts should be good for something besides showing me a repeating list of
    what I've already watched. :)

    I see people getting acclimated quickly. With Win10, for example,
    people are already talking passively. This past week there's talk of
    MS showing Win11 ads on Win10. But almost no one says, "This is nuts!
    How do I stop it?" They just whine that MS are mistreating them, as
    though their computer belongs to MS. With websites people are also
    becoming passive. Pretty much the only voice I find in support of the
    citizenry over corporatocracy is Tim Berners-Lee. He writes an article periodically about his invention being ruined, but few are listening.


    You might want to take a look at Vivaldi. If I ever give up on Firefox, that's what I'll go with. It's an un-Googled Chrome browser. Today I was
    able to install every extension that I'm using in Firefox into Vivaldi.
    That is, they're all ported to the Chrome based browsers. Only one
    Firefox extension wasn't available, and I decided that life would
    continue without it.


    Does it also have a menu bar and title bar? For me the hamburger menu
    on Chrom* was the dealbreaker. Even menubar extensions don't work.

    I just read the Wikipedia page on Vivaldi. It sounds interesting, except
    for one mention of a spyware function to send home a user ID. Though
    I don't really want a lot of customizations. I mostly just want a functional GUI, designed for a Desktop, with a Desktop menu bar, and the basic
    settings options. But these days I'm also dependent on NoScript. There
    so much script on pages -- with some sites loading script from a dozen
    sources -- that I don't see any solution aside from NoScript. I just can't disable script 100% like I used to.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Frank Slootweg@21:1/5 to mayayana@invalid.nospam on Mon Apr 15 13:55:09 2024
    Newyana2 <mayayana@invalid.nospam> wrote:
    [...]

    Yes. So I venture into Microsoft's ugly-ass and barely functional
    Metro forest, find default apps, find filetypes, got to .7z, for example,
    and the only choice is Hamster. Hamster? I don't remember ever installing anything called Hamster. I certainly don't have it now. I do have 7-Zip,
    but I can't choose it.

    Interesting! I'm on Windows 11 and *do* have Hamster [1], but .7z is defaulted to 'Windows Explorer' [sic] and can be changed to '7-Zip
    Console'. So all is well on my system.

    N.B. in Apps, Hamster is not found, but that's probably because it's installed in a non-standard directory (C:\hamster).

    [...]

    To use another program, the installed program
    has to have set the requisite Registry values to show up as
    a possible default program. Or I can go to right-click ->
    Open With, which offers only the mysterious Hamster program
    for .7z files.

    Out of interest, what kind of icon do you see for Hamster?

    I have Hamster Classic, whose icon is a front/face picture of a yellow hamster.

    [...]

    [1] A personal 'proxy' news server, which sits between my newsreader
    (tin) and my real NSP's (News Service Provider's) news server (in my
    case News.Individual.Net).

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From John C.@21:1/5 to All on Tue Apr 16 05:46:13 2024
    Newyana2 wrote:
    On 4/14/2024 10:37 PM, John C. wrote:

        The primary reason I updated to Win10 was broken webpages. Now
    I still see a lot of broken pages. Far too many are broken without
    script.
    It's gradually turning into a kiosk Internet where we're expected to
    be leaking personal info constantly while we watch ads.

    Too true. I fear that the internet may suffer the same fate as cable TV.
    Check out the 1989 movie "How to Get Ahead in Advertising".

        I'll look that up. I've never heard of it. But my 4 streaming accounts should be good for something besides showing me a repeating list of
    what I've already watched. :)

        I see people getting acclimated quickly. With Win10, for example, people are already talking passively. This past week there's talk of
    MS showing Win11 ads on Win10. But almost no one says, "This is nuts!
    How do I stop it?" They just whine that MS are mistreating them, as
    though their computer belongs to MS. With websites people are also
    becoming passive. Pretty much the only voice I find in support of the citizenry over corporatocracy is Tim Berners-Lee. He writes an article periodically about his invention being ruined, but few are listening.


    You might want to take a look at Vivaldi. If I ever give up on Firefox,
    that's what I'll go with. It's an un-Googled Chrome browser. Today I was
    able to install every extension that I'm using in Firefox into Vivaldi.
    That is, they're all ported to the Chrome based browsers. Only one
    Firefox extension wasn't available, and I decided that life would
    continue without it.


      Does it also have a menu bar and title bar?

    Yes, it does:

    Settings/Appearance/Show Title Bar

    and:

    Settings/Appearance/MENU/Menu Position/Horizontal

    and:

    Settings/Appearance/MENU/Menu Icon Style/Menu Icon

    For me the hamburger menu
    on Chrom* was the dealbreaker. Even menubar extensions don't work.

    You and a lot of other people. Thank Google for pushing that UI change
    on everybody, and then other companies for following their example.

    I just read the Wikipedia page on Vivaldi. It sounds interesting, except
    for one mention of a spyware function to send home a user I
    From this article:

    https://www.ghacks.net/2018/01/30/vivaldi-browser-privacy/

    came: _____________________________________________________________________________________
    Ghacks editor-in-chief Martin Brinkmann wrote about the privacy of
    Vivaldi in January 2018. He criticised the lack of an opt-out option for
    the unique user ID it generates to get general statistics about the
    browser's userbase, but commented that the unique ID "is easy enough to
    delete" and "it is different anyway if you use Vivaldi on multiple devices" _____________________________________________________________________________________

    Not sure what's happened since 2018 (the year the article was published) regarding this issue, but perhaps somebody else can help here.

    Though
    I don't really want a lot of customizations. I mostly just want a
    functional GUI, designed for a Desktop, with a Desktop menu bar, and the basic settings options. But these days I'm also dependent on NoScript.
    There so much script on pages -- with some sites loading script from a
    dozen sources -- that I don't see any solution aside from NoScript. I just can't disable script 100% like I used to.

    I've never bothered dealing with javascript, but probably should do so.

    --
    John C.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)