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