Need workaround for another Firefox improvement.

Page 6 of 7 FirstFirst ... 4567 LastLast

  1. Posts : 23,253
    Win 10 Home ♦♦♦19045.4355 (x64) [22H2]
    Thread Starter
       #51

    dalchina said:
    Having got tired of the oh-so-frequent updates of FF, I rather like the idea of adding group policy templates - and there's a lot of them.

    Here's the result- a visible reminder:
    Attachment 328482

    How to Install and Use Firefox Group Policies in Windows

    Thanks for the link @Callender !


    Must be nice to have Windows 10 Pro.

    Those of us on Windows 10 Home can't get past step #4.

    Need workaround for another Firefox improvement.-image1.png
      My Computer


  2. Posts : 42,985
    Win 10 Pro (22H2) (2nd PC is 22H2)
       #52

    Helps sometimes- cost me all of $40 or so for Win 8.1 Pro from MS back in the day... forward planning.. then buy barebones laptop... this one was a 2nd-hand ex-business Thinkpad with SSD and Win 10 Pro.. £200.
      My Computers


  3. Posts : 17,838
    Windows 10
       #53

    The frequent updates are a bit annoying but, I find FF is a little snappier with each update.
    Thankfully you can still CSS Style the snot out of FF!
    I can do without the Proton stuff, ('cept maybe the clean tabs look)

    Need workaround for another Firefox improvement.-000783.png
      My Computer


  4. Posts : 17,838
    Windows 10
       #54

    My current StyleSheet, for those curious; it's pretty much self explanatory:
    just remember: toolkit.legacyUserProfileCustomizations.stylesheets has to be set to true

    Code:
    @namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);
    
    #main-window { -moz-appearance: -moz-win-glass !important;}
    
    #titlebar-buttonbox > toolbarbutton {  opacity: 0.0 !important; }
    
    .tabbrowser-tab {  opacity: 0.97 !important; }
    
    /* Hide separator, only show *** button after 2-sec hover */
    
    #pageActionSeparator {
     display: none !important;
    }
    
    #page-action-buttons #pageActionButton {
     width: 0 !important;
     padding: 4px !important;
     transition: all 1s ease-in-out;
    }
    
    #page-action-buttons:hover #pageActionButton {
     width: 24px !important;
     padding: 4px !important;
     transition: all 1s ease-in-out 2s;
    }
    
    /* Remove the forward and back buttons */
    #back-button, #forward-button  { display: none !important; }
    
    .tabbrowser-tab:not(:hover) .tab-close-button{ display:none; }
    .tabbrowser-tab:not([pinned]):hover .tab-close-button{ display:block !important; }
    
    
    .tabbrowser-tab:not([pinned]):hover  .tab-icon-image {
      display: none !important;
    }
    
    .tabbrowser-tab:hover  .tab-throbber,
    .tabbrowser-tab:hover  .tab-icon-image,
    .tabbrowser-tab:hover .tab-sharing-icon-overlay,
    .tabbrowser-tab:hover  .tab-icon-overlay,
    .tabbrowser-tab:hover  .tab-label-container,
    .tabbrowser-tab:hover  .tab-icon-sound {
       -moz-box-ordinal-group: 2 !important;
    }
    
    .tabbrowser-tab .tab-close-button {
      margin-left: -2px !important;
      margin-right: 2px !important;
    }
    
    /* Auto-hide bookmarks bar (show only on nav-bar hover)  */
    #PersonalToolbar{
        opacity:0 !important;
        margin-top: -23px !important;
        transition: all 0.4s ease 0s !important;
    }
    
    #navigator-toolbox:hover > #PersonalToolbar{
    visibility: visible !important;
    margin-top: 0px !important;
    transition: all 0.4s ease 0s !important;
    opacity: 1 !important;
    }
    
    #urlbar-reload-button, #urlbar-stop-button, #urlbar-go-button, #stop-reload-button {
       display: none !important;
    }
    
    /* Remove hamburger menu button */
    #PanelUI-menu-button {display: none;}
    
    .tab-line {
      display: none !important;
    }
      My Computer


  5. Posts : 6,849
    22H2 64 Bit Pro
       #55

    RickC said:
    I'm still on FF 86.0.1 so only looked at what the toggler did in the registry (using Process Explorer) then removed the registry setting completely without restarting.

    After the 'fun and games' you folks have been having... I think I'll stick with this version a little longer.

    I note that since disabling the 'Mozilla Maintenance Service' I'm not getting the nags every hour or so to update now. Is this service not part of the jigsaw?
    Toggler always works for me. You might be on to something. I forgot to mention that when upgrading Firefox I download the installer and run it choosing "Custom" install and opt not to install maintenance service. If I ever forget and accidentally install maintenance service then I uninstall it typically using Geek uninstaller (or Hibit uninstaller) either of which allows selective removal of "maintenance service"
      My Computer


  6. Posts : 31,660
    10 Home x64 (22H2) (10 Pro on 2nd pc)
       #56

    Ghot said:
    Must be nice to have Windows 10 Pro.

    Those of us on Windows 10 Home can't get past step #4.
    A group policy is just a template for gpedit.msc to tell it the registry keys and values to use. If you know what they are, then in Home you can apply them using Regedit.

    The downloaded definitions of the Firefox group policies are in a pair of xml files with the extensions .admx and .adml. You can read these files in Notepad to see what the relevant registry changes are to disable updates.

    Code:
    ============
    FIREFOX.ADMX
    ============
    
        <policy name="DisableAppUpdate" class="Both" displayName="$(string.DisableAppUpdate)" explainText="$(string.DisableAppUpdate_Explain)" key="Software\Policies\Mozilla\Firefox" valueName="DisableAppUpdate">
          <parentCategory ref="firefox"/>
          <supportedOn ref="SUPPORTED_FF60"/>
          <enabledValue>
            <decimal value="1"/>
          </enabledValue>
          <disabledValue>
            <decimal value="0"/>
          </disabledValue>
        </policy>
    
    
    ============
    FIREFOX.ADML
    ============
    
          <string id="DisableAppUpdate">Disable Update</string>
          <string id="DisableAppUpdate_Explain">If this policy is enabled, the browser does not receive updates.
    
    If this policy is disabled or not configured, the browser receives updates.</string>

    From that, you can manually add them in Regedit - which I have done, then exported to get this .reg file:

    Code:
    Windows Registry Editor Version 5.00
    
    [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Mozilla]
    
    [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Mozilla\Firefox]
    "DisableAppUpdate"=dword:00000001

    Need workaround for another Firefox improvement.-image.png


    To re-enable updates just delete the key HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Mozilla
    Last edited by Bree; 20 Apr 2021 at 07:13.
      My Computers


  7. Posts : 23,253
    Win 10 Home ♦♦♦19045.4355 (x64) [22H2]
    Thread Starter
       #57

    RickC said:
    Many thanks for the link.


    I hadn't realised it was so simple... it's just a single registry setting:

    Code:
    Windows Registry Editor Version 5.00
    
    ; Disable/Enable Firefox Updates (from v63 and upwards): 1 = Disabled / 0 = Enabled
    
    [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Mozilla\Firefox]
    "DisableAppUpdate"=dword:00000001

    That reg edit DID work. I'm thinking that updating to FF 88.0, erased that and the distribution folder.
    I just tested each one separately... and they both work. And I KNOW I had them BOTH employed before the FF 88.0 manual update yesterday.









    Bree said:
    A group policy is just a template for gpedit.msc to tell it the registry keys and values to use. If you know what they are, then in Home you can apply them using Regedit.

    The downloaded definitions of the Firefox group policies are in a pair of xml files with the extensions .admx and .adml. You can read these files in Notepad to see what the relevant registry changes are to disable updates.

    Code:
    ============
    FIREFOX.ADMX
    ============
    
        <policy name="DisableAppUpdate" class="Both" displayName="$(string.DisableAppUpdate)" explainText="$(string.DisableAppUpdate_Explain)" key="Software\Policies\Mozilla\Firefox" valueName="DisableAppUpdate">
          <parentCategory ref="firefox"/>
          <supportedOn ref="SUPPORTED_FF60"/>
          <enabledValue>
            <decimal value="1"/>
          </enabledValue>
          <disabledValue>
            <decimal value="0"/>
          </disabledValue>
        </policy>
    
    
    ============
    FIREFOX.ADML
    ============
    
          <string id="DisableAppUpdate">Disable Update</string>
          <string id="DisableAppUpdate_Explain">If this policy is enabled, the browser does not receive updates.
    
    If this policy is disabled or not configured, the browser receives updates.</string>

    From that, you can manually add them in Regedit - which I have done, then exported to get this .reg file:

    Code:
    Windows Registry Editor Version 5.00
    
    [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Mozilla]
    
    [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Mozilla\Firefox]
    "DisableAppUpdate"=dword:00000001

    Need workaround for another Firefox improvement.-image.png


    To re-enable updates just delete the key HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Mozilla


    Yeah, @RickC, posted that yesterday. Well, the registry edit.
      My Computer


  8. Posts : 31,660
    10 Home x64 (22H2) (10 Pro on 2nd pc)
       #58

    Ghot said:
    Yeah, @RickC, posted that yesterday. Well, the registry edit.
    Hadn't spotted that post from RickC


    But now you know how to implement any of the other FF policies in Home by reading the templates. Works for the MS templates too (well, most of them - some are ignored in Home). 20H2 templates available here:

    https://www.microsoft.com/en-us/download/102157

    Open the .msi download as an archive using 7-Zip to read the .admx files.
      My Computers


  9. Posts : 6,849
    22H2 64 Bit Pro
       #59

    Ghot said:
    That reg edit DID work. I'm thinking that updating to FF 88.0, erased that and the distribution folder. I just tested each one separately... and they both work. And I KNOW I had them BOTH employed before the FF 88.0 manual update yesterday.
    With that sorted you could just manually update when a new version is available by downloading the setup .exe from here then install over the top of the currently installed version.

    Latest Firefox released for Windows [2]

    Note   Note
      My Computer


  10. Posts : 14,020
    Win10 Pro and Home, Win11 Pro and Home, Win7, Linux Mint
       #60

    Just noticed another "visual" change, the folder icon on the Download menu are now an outline rather than solid black.
    Need workaround for another Firefox improvement.-image.png
      My Computers


 

  Related Discussions
Our Sites
Site Links
About Us
Windows 10 Forums is an independent web site and has not been authorized, sponsored, or otherwise approved by Microsoft Corporation. "Windows 10" and related materials are trademarks of Microsoft Corp.

© Designer Media Ltd
All times are GMT -5. The time now is 20:41.
Find Us




Windows 10 Forums