Is there a way to send a pop up message to all Staff computers to notify them that there is an email problem?
Solved
Pop up Messages to all User
Best answer by sgiesbrecht
I use this script and then create a Policy with the required scope
#!/bin/sh
########## Variables #########
JHELPER="/Library/Application Support/JAMF/bin/jamfHelper.app/Contents/MacOS/jamfHelper"
MsgTitle="New Medium Priority Alert: IS&T Impersonation"; # The message title
MsgIcon="/System/Library/CoreServices/CoreTypes.bundle/Contents/Resources/AlertStopIcon.icns"; # The message icon to use. System icons can be found /System/Library/CoreServices/CoreTypes.bundle/Contents/Resources.
MsgIconSize="100"; # The size of the icon to use. It will also be needed to change up to the size of the message box.
MsgButton1="OK"; # The button(s) name. Can add -button2... for mutliple buttons
######## Message Body ########
MsgBody="Advisors are receiving calls where the caller is identifying themselves as IS&T HelpLine support in order to gain sensitive information.
- Caller identifies themselves as IS&T HelpLine personnel and claims they need to “fix” or “repair” the VPN connectivity for the Advisor who answers the call.
- Caller provides a link for the Advisor to engage in the false “fix” - Advisor is redirected to a malicious site that prompts them for credentials including username, password, and two-factor authentication code, giving the caller access to the Apple network. If you have visited a potentially malicious site and provided credentials, reset all of your Apple credentials and report it to your Team Manager. Any questions can be directed to the DRI.
Press OK button to confirm that you have both read and understand this message"; # The body of the message. Use like a text editor for line breaks."
######## Message Launcher ########
WELCOME=$("$JHELPER" -windowType utility -heading "$MsgTitle" -iconSize $MsgIconSize -icon "$MsgIcon" -alignDescription natural -description "$MsgBody" -button1 "$MsgButton1")
exit 0
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.
