Need workaround for another Firefox improvement.  

Page 5 of 7 FirstFirst ... 34567 LastLast

  1. Posts : 2,487
    Windows 10 Home, 64-bit
       #41

    Is it your understanding that the Toggle application has the same effect as the following instructions and code? I have been using this code for a week and it has defeated the nag popup, but I am not clear on whether or not it also defeats auto-updating. I'd prefer it did and that updates are ONLY on demand.


    Create a directory called "distribution" in the same directory as your Firefox executable.
    Using Notepad, create a file called policies.json in that directory and put the following in it

    {


    "policies": {
    "DisableAppUpdate": true
    }
    }
      My Computer


  2. Posts : 1,460
    Windows 10 Pro (+ Windows 10 Home VMs for testing)
       #42

    Callender said:
    FYI:

    Toggle Firefox Update : Easily Enable or Disable Automatic Updates in Firefox

    I use this to disable auto updates and manually download new versions of Firefox if I want to update.

    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
      My Computer


  3. Posts : 20,503
    Win 10 Home ♦♦♦19045.3031 (x64) [22H2]
    Thread Starter
       #43

    ignatzatsonic said:
    Is it your understanding that the Toggle application has the same effect as the following instructions and code? I have been using this code for a week and it has defeated the nag popup, but I am not clear on whether or not it also defeats auto-updating. I'd prefer it did and that updates are ONLY on demand.


    Create a directory called "distribution" in the same directory as your Firefox executable.
    Using Notepad, create a file called policies.json in that directory and put the following in it

    {


    "policies": {
    "DisableAppUpdate": true
    }
    }



    Ok. There's a small problem with that... when I updated FF to 88.0 it erased the distribution folder.

    But just putting it in there again and re-starting FF fixes it.

    I use a little bit different code.

    Code:
    {
    	"policies": {
    		"AppUpdateURL": "http://127.0.0.1/",
    		"DisableAppUpdate": true,
    		"DisableFirefoxStudies": true,
    		"DisableSystemAddonUpdate": true,
    		"DisableTelemetry": true,
    		"ExtensionUpdate": false
    	}
    }


    Here's the complete file already in the "distribution" folder, that you just need to drop into...
    C:\Program Files\Mozilla Firefox, or where ever you have FF installed.
    Then just restart FF and you're done.

    distribution.7z

    Virustotal scan: VirusTotal



    Need workaround for another Firefox improvement.-image1.png



    /edit

    I tired the registry edit.. didn't work on FF 88.0, even after a reboot and restart of FF.
      My Computer


  4. Posts : 2,487
    Windows 10 Home, 64-bit
       #44

    Not quite clear on your edited response, Ghot...

    You say my single line of code does NOT survive a manual update. Could be. Have not attempted an update and don't currently want to. I assume (perhaps incorrectly) that I could NOT manually update unless I first remove that code.

    Does your 6 lines of code survive an update?

    If not, what's the advantage of 6 lines?

    Do you have to manually remove your distribution folder and the 6 lines of code to do a manual update?
      My Computer


  5. Posts : 20,503
    Win 10 Home ♦♦♦19045.3031 (x64) [22H2]
    Thread Starter
       #45

    ignatzatsonic said:
    Not quite clear on your edited response, Ghot...

    You say my single line of code does NOT survive a manual update. Could be. Have not attempted an update and don't currently want to. I assume (perhaps incorrectly) that I could NOT manually update unless I first remove that code.

    Does your 6 lines of code survive an update?

    If not, what's the advantage of 6 lines?

    Do you have to manually remove your distribution folder and the 6 lines of code to do a manual update?



    NO.

    MY code did not survive an update. The update deleted the "distribution" folder.
    I put MY distribution folder back and restarted firefox... and all was well again.

    I have no idea what the advantage of 6 lines is.
    The only things I notice are that MY code also disables things like telemetry and FF studies.

    I didn't write the code, I just found and tested it.

    The reason I quoted you was so you would know that the next FF update might break YOUR code too.
    They share the same line... "DisableAppUpdate": true
      My Computer


  6. Posts : 2,487
    Windows 10 Home, 64-bit
       #46

    OK;

    My code and your code are both worthless for my purposes IF they don't defeat forced updates.

    So far my code has apparently defeated updates. I have not seen an update nag or a "Congratulations, you are using the latest version of Firefox" in 5 or 6 days.....ever since I inserted the code.

    I didn't write my code either. The one line is as I found it somewhere in a forum, direct from a Mozilla employee/developer.

    We shall see over time.
      My Computer


  7. Posts : 20,503
    Win 10 Home ♦♦♦19045.3031 (x64) [22H2]
    Thread Starter
       #47

    ignatzatsonic said:
    OK;

    My code and your code are both worthless for my purposes IF they don't defeat forced updates.

    So far my code has apparently defeated updates. I have not seen an update nag or a "Congratulations, you are using the latest version of Firefox" in 5 or 6 days.....ever since I inserted the code.

    I didn't write my code either. The one line is as I found it somewhere in a forum, direct from a Mozilla employee/developer.

    We shall see over time.



    Yeah, same with mine. I started searching on the Mozillazine forums.
    Previously, mine worked also... I just double checked it today when I saw the reg edit post.
    I noticed it was "checking for updates" again.

    I tried the reg edit.. that didn't help. I looked in C:\Program Files\Mozilla Firefox ...and to my surprise... no distribution folder.
    So I put it in there again, and restarted FF, and you can see the result from the pic above.
      My Computer


  8. Posts : 1,460
    Windows 10 Pro (+ Windows 10 Home VMs for testing)
       #48

    Ghot said:
    I tried the registry edit.. didn't work on FF 88.0, even after a reboot and restart of FF.
    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?
      My Computer


  9. Posts : 20,503
    Win 10 Home ♦♦♦19045.3031 (x64) [22H2]
    Thread Starter
       #49

    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?


    Yeah, the Maintenance Service adds to the issue. I never check that box when updating FF.
    I always do manual updates.

    The info in post #41 or post #43 will stop the updates.
    We're just not sure if after the "next" update, we won't have to put the "distribution" folder back into...
    C:\Program Files\Mozilla Firefox

    I always manually download the updates from here: Download the Firefox Browser in English (US) and more than 90 other languages


    We also have a topic just for the latest FF updates here: Latest Firefox released for Windows [2]
      My Computer


  10. Posts : 39,308
    Win 10 Pro (22H2) (2nd PC is 22H2)
       #50

    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:
    Need workaround for another Firefox improvement.-1.png

    How to Install and Use Firefox Group Policies in Windows

    Thanks for the link @Callender !
      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 12:01.
Find Us




Windows 10 Forums