Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.

tehabe

macrumors 6502
Original poster
Jun 6, 2018
379
497
Hamburg
Some Apple apps, for which I turned off notifications, are nagging me to turn them on, does anyone know a way to stop those apps from asking me?

Screenshot 2023-03-11 at 19.41.36.png
 
You can try with a configuration profile like this one
Code:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
    <key>PayloadContent</key>
    <array>
        <dict>
            <key>NotificationSettings</key>
            <array>
                <dict>
                    <key>AlertType</key>
                    <integer>0</integer>
                    <key>BadgesEnabled</key>
                    <false/>
                    <key>BundleIdentifier</key>
                    <string>com.apple.tv</string>
                    <key>CriticalAlertEnabled</key>
                    <false/>
                    <key>GroupingType</key>
                    <integer>2</integer>
                    <key>NotificationsEnabled</key>
                    <false/>
                    <key>PreviewType</key>
                    <integer>2</integer>
                    <key>ShowInCarPlay</key>
                    <false/>
                    <key>ShowInLockScreen</key>
                    <false/>
                    <key>ShowInNotificationCenter</key>
                    <false/>
                    <key>SoundsEnabled</key>
                    <false/>
                </dict>
            </array>
            <key>PayloadDisplayName</key>
            <string>Notifications</string>
            <key>PayloadIdentifier</key>
            <string>com.apple.notificationsettings.7BB78C06-23DF-4152-9752-C5C67C3D1FD4</string>
            <key>PayloadType</key>
            <string>com.apple.notificationsettings</string>
            <key>PayloadUUID</key>
            <string>7BB78C06-23DF-4152-9752-C5C67C3D1FD4</string>
            <key>PayloadVersion</key>
            <integer>1</integer>
        </dict>
    </array>
    <key>PayloadDisplayName</key>
    <string>DisableTVNotifications</string>
    <key>PayloadIdentifier</key>
    <string>iMac.4B977D6F-72FE-4543-9162-51DB3C6A46E7</string>
    <key>PayloadScope</key>
    <string>System</string>
    <key>PayloadType</key>
    <string>Configuration</string>
    <key>PayloadUUID</key>
    <string>4B977D6F-72FE-4543-9162-51DB3C6A46E7</string>
    <key>PayloadVersion</key>
    <integer>1</integer>
    <key>TargetDeviceType</key>
    <integer>5</integer>
</dict>
</plist>

created with
iMazing Profile Editor https://apps.apple.com/app/imazing-profile-editor/id1487860882
Getting started with iMazing Profile Editor https://imazing.com/guides/getting-started-with-imazing-profile-editor
Apple's documentation
https://developer.apple.com/documentation/devicemanagement/notifications
https://support.apple.com/guide/deployment/dep46b6547ba/web
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.