Posted on 10-08-2019 07:53 AM
Hello,
Is there a way to block/prevent Catalina notification? There is solution below for Mojave.
Thanks!
#!/bin/bash
# Disable macOS Upgrade notifications
# Locate Caching Servers
/usr/bin/AssetCacheLocatorUtil
# Reset ignored updates
/usr/sbin/softwareupdate --reset-ignored
# Ignore High Sierra Nag Updates
/usr/sbin/softwareupdate --ignore "macOSInstallerNotification_GM"
echo
# Step 2: delete the file if it's already on the computer
if [[ -d /Library/Bundles/OSXNotification.bundle ]]; then
echo "OSXNotification.bundle found. Deleting..."
rm -rf /Library/Bundles/OSXNotification.bundle ||:
else
echo "OSXNotification.bundle not found."
fi
Posted on 10-08-2019 08:33 AM
The following works for us
#!/bin/sh
softwareupdate --ignore "macOS Catalina"
Posted on 10-08-2019 09:27 AM
@bramstedtb Thank you! I'll try
Posted on 10-08-2019 11:25 AM
Sorry, seems like it already has been discussed, with solution provided:
https://www.jamf.com/jamf-nation/discussions/33505/ignore-catalina...