Posted on 03-26-2020 09:00 AM
Hi all, looking for a bit of help with Chrome. I am looking to add it as a 2nd browser on some Macs. I have a super basic package that literally drops the app in the Applications folder.
I have used @talkingmoose shared for managed notifications to manage the notifications for Chrome but I am still seeing another one and I don't know what it is for (see screenshot).
Any ideas greatly received!
.
Posted on 04-19-2020 07:50 PM
Did you ever get this resolved? I am experiencing this as well using the same guide from Jamf's @talkingmoose . Users still receive notifications during initial deployment of Chrome.
Additionally, do you have a workflow (configuration profile or otherwise) to manage Chrome settings on first launch? Including the "GoogleSoftwareUpdate.bundle"?
Thank you
Posted on 04-20-2020 06:37 AM
@wilko_andy and @randy.andersen, it took a bit of digging, but the I believe the bundle ID you want to use for the second Google Chrome is com.google.Chrome.framework.AlertNotificationService
.
I too saw the double Google Chrome and that bundle ID worked for me.
Posted on 04-20-2020 10:45 AM
Thank you, that worked.
Posted on 01-12-2021 12:14 PM
Thanks @talkingmoose , huge help as always!
No idea how you tracked down that bundle ID but added it to my PLIST and now allows me to completely manage both Chrome notifications.
Posted on 08-19-2021 10:55 AM
@petestanley, can you please share which PLIST you added these bundle IDs to, to manage both sets of Chrome notifications? I'm trying to avoid pushing these out via a Configuration Profile, as I'm not against our users modifying them if need be. Is it possible to simply add these to the Google Chrome install Policy?
Posted on 08-19-2021 12:38 PM
@user-euWWiRePoQ As far as I know, there's no way to set it centrally and allow users to override.
The preference itself sits in /Library/Managed\ Preferences/com.apple.notificationsettings.plist when deployed via MDM configuration profile:
{
NotificationSettings = (
{
AlertType = 1;
BadgesEnabled = 1;
BundleIdentifier = "com.google.Chrome";
NotificationsEnabled = 1;
ShowInLockScreen = 0;
ShowInNotificationCenter = 1;
},
{
AlertType = 1;
BadgesEnabled = 1;
BundleIdentifier = "com.google.Chrome.framework.AlertNotificationService";
NotificationsEnabled = 1;
ShowInLockScreen = 0;
ShowInNotificationCenter = 1;
}
);
PayloadUUID = "123456-123456-123456-123456-123456";
}
Believe if not set via MDM profile, it could live in /Library/Preferences/com.apple.notificationsettings.plist. Perhaps if set there would allow users to override?
03-10-2022 12:54 PM - edited 03-10-2022 12:55 PM
Hi @petestanley ,
To query the notification center database, just type this command line in the Terminal:
sqlite3 "$(getconf DARWIN_USER_DIR)/com.apple.notificationcenter/db2/db" "select * from app;"
All the applications domains/bundles IDs that uses the Notification Center will show up.
Posted on 05-27-2021 10:51 AM
@talkingmoose Maybe I missed it somewhere, can you please share the first bundle ID as well? Appreciated.
NVM I think it's just the standard com.google.Chrome
Posted on 08-19-2021 12:40 PM
@jchen1225
com.google.Chrome
com.google.Chrome.framework.AlertNotificationService
Posted on 12-18-2021 09:15 PM
can you share the completed deployment script for chrome that included the notifications and prompts going away?