Monterey 12.3 and DEPnotify issue
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Posted on 03-23-2022 08:47 AM
Is anyone having issues with their DEPnotify script on devices that have the latest macOS Monterey 12.3? Our script is not working on devices with version 12.3. If I roll back to version 12.2.1 the DEPnotify script works fine.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Posted on 03-23-2022 08:52 AM
Double check the DEPNotify script and make sure you don't have any "python" calls in there. Machines with macOS 12.3 installed do not have python installed by default anymore.
You're probably seeing the same issue that was pointed out in this post:
https://community.jamf.com/t5/jamf-pro/dep-notify-and-monterey-12-2-3-python-call/m-p/258525
You should be able to change the command used to pull the username to something that doesn't require python and then the rest of the script should run just fine.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Posted on 03-24-2022 10:28 AM
Just to add to this I used the script at this link https://github.com/jamfprofessionalservices/DEP-Notify and it does not have any python calls in it.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-26-2022 05:01 AM - edited 03-27-2022 08:42 PM
I really appreciated this piece. I often think of how much of a time suck and a mental drain diving into comment conversations can be. But sometimes it is worth it. At the end of the day, it's important to assert oneself and to attempt to have discussions about what matters to you.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Posted on 04-04-2022 09:32 AM
CURRENT_USER=$(echo "show State:/Users/ConsoleUser" | scutil | awk '/Name :/ && ! /loginwindow/ { print $3 }') echo "$(date "+%a %h %d %H:%M:%S"): Current user set to $CURRENT_USER."
