Skip to content

Commit

Permalink
updated README for new notifications profile
Browse files Browse the repository at this point in the history
  • Loading branch information
flymg committed Apr 30, 2023
1 parent 54f54d4 commit e6366a8
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 0 deletions.
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,3 +118,11 @@ A full example is available in `./mdm`.
```

> :warning: Please replace **`YOURTOKEN`** in the example `.plist` with your license key and customize optional **`DriveLetterMapping`** Keys as you like.
### FORCE NOTIFICATIONS

We recommend to enforce the display of notifications at least with `temporary banner` style for your users when using MDM.

A sampleconfig is available here: `./mdm/forcenotifications.mobileconfig`

Further reference can be found here: https://developer.apple.com/documentation/devicemanagement/notifications/notificationsettingsitem
44 changes: 44 additions & 0 deletions mdm/forcenotifications.mobileconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
<?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>BundleIdentifier</key>
<string>io.lumibit.mac.linkconverter</string>
<key>AlertType</key>
<integer>1</integer>
<key>NotificationsEnabled</key>
<true/>
</dict>
</array>
<key>PayloadDisplayName</key>
<string>Notifications Payload</string>
<key>PayloadIdentifier</key>
<string>34B1D67D-56BB-4732-8C29-4FD1D1C9DA74</string>
<key>PayloadOrganization</key>
<string>Lumibit GmbH Scripting Unit</string>
<key>PayloadType</key>
<string>com.apple.notificationsettings</string>
<key>PayloadUUID</key>
<string>34B1D67D-56BB-4732-8C29-4FD1D1C9DA74</string>
<key>PayloadVersion</key>
<integer>1</integer>
</dict>
</array>
<key>PayloadDisplayName</key>
<string>LinkConverterNotifications</string>
<key>PayloadIdentifier</key>
<string>0DC6968B-C8F7-4955-97D1-6C5DCA65E5A6</string>
<key>PayloadType</key>
<string>Configuration</string>
<key>PayloadUUID</key>
<string>0DC6968B-C8F7-4955-97D1-6C5DCA65E5A6</string>
<key>TargetDeviceType</key>
<integer>5</integer>
</dict>
</plist>

0 comments on commit e6366a8

Please sign in to comment.