Custom logo in jamf notifications

rpayne
Contributor II

So this may be a stupid question. All of the notifications that come from jamf policies (patch management for example) always show with the default jamf icon. Where do you set a custom image?

Screenshot 2023-01-10 at 12.09.56 PM.png

5 REPLIES 5

dan-snelson
Valued Contributor II

Happy New Year, @rpayne!

My current understanding is that it's not possible.

The following may prove helpful:

https://snelson.us/2022/11/macos-notifications-via-swiftdialog-0-0-1/

sam89
New Contributor

Dear@dan-snelson,

I have followed your guide properly and it changes icon only for swiftDialog notification. My JAMF Management Notification icon is still same. If I install any custome policy package via self-service notification icon shows the same as jamf default.

Screenshot 2024-08-16 at 11.44.16.png

jamf-42
Valued Contributor II

Setting - Self Service - Branding

dan-snelson
Valued Contributor II

Correct, @sam89, only swfitDialog-generated Notifications are custom-branded.

MA="/Library/Application\ Support/JAMF/bin/Management\ Action.app/Contents/MacOS/Management\ Action"
loggedInUser=$( echo "show State:/Users/ConsoleUser" | scutil | awk '/Name :/ { print $3 }' )
title="Title goes here"
subtitle="Subtitle goes here"
message="Message goes here"
/usr/bin/su \- "${loggedInUser}" -c "${MA} -title \"${title}\" -subtitle \"${subtitle}\" -message \"${message}\""

 

dan-snelson
Valued Contributor II

Screenshot 2024-08-16 at 5.58.56 AM.png