Just go and press check for updates. This will bring your red badge back in no time.
Hi @avz ,
Yes that's right, that's why I notified it in my message #17362
"FIXED MY ISSUE TEMPORARILY!"
"It works as long as I do not run update lookup with the software update system preferences even though I have already run (sudo softwareupdate - ignore "macOS Catalina" and sudo softwareupdate --list) before. "
In this case it is necessary to redo the manipulation with the terminal (which is not a real problem)
Code:
sudo defaults delete /Library/Preferences/com.apple.SoftwareUpdate.plist LastRecommendedMajorOSBundleIdentifier
defaults write com.apple.systempreferences AttentionPrefBundleIDs 0
killall Dock
That said, we do not launch a search for updates every day...
However, this does not block the search for automatic updates as I read with some solutions on the web
EDIT:
In order to permanently prevent the red badge from coming back after each update search (automatic and/or manual)
Just add the following line to others:
Code:
defaults delete com.apple.preferences.softwareupdate LatestMajorOSSeenByUserBundleIdentifier
For simplicity execute all these commands at once by copying all this code and paste it into the Terminal:
Code:
sudo softwareupdate --ignore "macOS Catalina";
defaults delete /Library/Preferences/com.apple.SoftwareUpdate.plist LastRecommendedMajorOSBundleIdentifier;
defaults write com.apple.systempreferences AttentionPrefBundleIDs 0;
killall Dock;
defaults delete com.apple.preferences.softwareupdate LatestMajorOSSeenByUserBundleIdentifier;
softwareupdate --list
Last edited: