Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
Showing results forΒ
Get 50% OFF QuickBooks for 3 months*
Buy nowAs others have said in this thread, changing the first "BackgroundEnabled=1" line in the QBUpdate.dat file to "BackgroundEnabled=0" does seem to disable Automatic Updates. The update overview screen says "Automatic Update is OFF" after making this change, but in the Options, it's still greyed out and appears as if "Yes" is selected.
I've written a script to do this for me on all systems where I've installed this, and wanted to share it.
You'll need:
- Python3 installed
- A text file named "computerlist.txt" in the same file as the python script with each computer name on a separate line
- To run the script with an account that has the necessary permissions (e.g., Domain Admin) on all computers on the list
It will also write a log file, so you know what it did or didn't do on each system.
Note that this is written for the 2023 version of QB Enterprise. If you're running a different version, you'll have to update the datfile_location in line 14.
From other things I've seen here, it looks like it's possible that things can trigger the system to turn Automatic Updates back on, so my plan is to run this as a scheduled task a few times a day.
IMPORTANT:
This forum won't allow me to upload a python file, nor will it let me just change the extension because it validates the file type, so here's the code:
Note that python is a whitespace sensitive language, so the formatting is important. My test of copying and pasting the text below seems to be formatted correctly when pasting.