06-07-2022 09:59 AM - edited 10-19-2022 07:40 AM
Edit: Replaced beginning with updated Mac Studio and M2 Mac details now that i've finally gotten some in my environment to confirm.
Hi all,
I've gone ahead and taken the liberty to modify the existing Regex from @talkingmoose to account for the devices that are currently being listed as compatible with macOS Ventura, along with a little bit of future proofing:
(^Mac1[3-9]|MacBook\d{2}|MacBookAir([8-9]|\d{2})|Macmini([8-9]|\d{2})|MacPro([7-9]|1\d)|iMacPro[1-9]|iMac(1[8-9]|2[0-9]),\d|MacBookPro(1[4-9]|2[0-9]),\d)
This can be used in a smart group or inventory report using the criteria item Model Identifier and then selecting "does not match regex" operator. Copy/paste the regex into the value and save the Smart Group to view all mac's that ARE NOT compatible with Ventura, or set the operator to "matches regex" to see devices that ARE compatible.
Let me know if I made any mistakes. Thanks all!
Posted on 06-07-2022 11:25 AM
Thanks for posting this @Eltord! Saved me some work and time!
Do you happen to have a Regex for iOS 16 available?
Posted on 08-17-2022 08:13 AM
I posted a regex for iOS 16, iPadOS 16, and tvOS 16 here.
Posted on 06-07-2022 01:06 PM
I do not, but I also don't have any mobile devices in my environment so I wouldn't be able to properly test and confirm it anyways. Sorry.
Posted on 06-07-2022 01:11 PM
YTMND!
Posted on 06-08-2022 01:30 AM
@Eltord thanks a lot for sharing this!
Posted on 06-08-2022 05:59 AM
You are a saint, thank you!!!
Posted on 06-08-2022 11:56 PM
Very cool. Thank you sir.
06-09-2022 02:19 PM - edited 06-09-2022 02:39 PM
I found a similar version on MacAdmins Slack #ventura channel by @jmahlman
Model Identifier does not match regex iMac(1[8-9]|[2-9]\d)|^MacPro[7-9]|iMacPro|Macmini([8-9]|\d\d)|MacBookAir([8-9]|\d\d)|MacBook(\d\d)|MacBookPro(1[4-9])|^Mac1[3-9]
Here's an EA version by Laurent Pertois: https://github.com/laurentpertois/Ventura-Compatibility-Checker/
I prefer this method personally as I like to customize the EA to add a third value of "Installed", so I ultimately have 3 possible results:
-Compatible with Ventura
-Not Compatible with Ventura
-Ventura Installed
I do this because I don't want the EA reporting a 'false positive' from a Mac that is technically compatible but already has Ventura installed.
Posted on 06-13-2022 11:32 AM
Do you mind sharing the script lines you added for "Ventura" installed? I suspect something along the lines of a check for OSVersion =22 then COMPATIBILITY = "Already Installed"... after line 103?
Posted on 06-14-2022 10:37 AM
Baisically I just add this section before Laurent's "Let's Go" section:
################################################################################
# Custom Logic June 2022:
################################################################################
# If target Mac is already running macOS 13 Ventura, report "Installed" and exit 0. No need to contune with Jamf's compatibility logic.
# Otherwise, if target Mac is not running Ventura already, continue with Jamf logic to verify compatability.
# This allows this EA script to have 1 of 3 possible results: 'True', 'False' and 'Installed'.
OS_MAJOR_VERSION=$( sw_vers -productVersion | awk -F. '{print $1}' )
echo "QA: OS_MAJOR_VERSION = ${OS_MAJOR_VERSION}"
if [[ "${OS_MAJOR_VERSION}" -eq 13 ]]; then
COMPATIBILITY="Installed"
echo "<result>${COMPATIBILITY}</result>"
exit 0
fi
Posted on 01-04-2024 07:24 AM
This add here is AWESOME @dstranathan ! Thank you for this. I am not good with scripting like this but could one take this a step further to add a "Past Version" option and then have the check stop there if it were for said past version? So the thought is for this would be now that there is a new OS out we would add something to the Venturea checker here that if it is OS 14 report back as "Past" or "Past Version" and stop checking. Just trying to think through the we have older versions of this and instead of them reporting "false" which we would not be using anyway for anything new going forward, but would the need for JAMF to not check it help with the speed of a recon or does it not matter for that? And would only help us with the visual report back of "Past". 🤷🏻♂️ Thanks
Posted on 06-30-2022 05:21 AM
I posted an update to make sure I include the Mac Studio:
iMac(1[8-9]|[2-9]\d)|^MacPro[7-9]|iMacPro|Macmini([8-9]|\d\d)|MacBookAir([8-9]|\d\d)|MacBook(\d\d)|MacBookPro(1[4-9])|^Mac1[3-9]
06-09-2022 02:37 PM - edited 06-09-2022 02:38 PM
(ignore)
Posted on 06-23-2022 10:56 AM
You also have this one I have used for a few years. Zack has made a great EA here
Posted on 06-24-2022 01:54 PM
Awesome, thanks @Eltord using data already in Jamf is a lot quicker than waiting for an EA to come back! However years ago before I was any good at regex I approached this from the client side and made an EA to report compatible versions back to Jamf: macOSCompatibility.sh (now updated for Mac Studio and Ventura), it's still fun to run for all versions and models and see which ones got screwed over for number of OSes they support
Posted on 08-23-2022 07:18 AM
Thank you for saving me some work here!
Appreciated!
Posted on 09-22-2022 02:33 AM
Great ! Thx
M2 are not managed with this regex
Posted on 10-14-2022 01:04 PM
@Aldo92500 Yeah it just needed "Mac14" added to the list by way of this range Mac1[3-9]... I went ahead and followed the future proofing feel of the original, although maybe it's too much, since some of these far flung future Mac Model IDs will be too new to run what will be ye olde Ventura by that point! And it seems that new models are now just "Macx,x" without any rhyme or reason?!
Anyway this adds Mac14 to the list:
^Mac1[3-9]|MacBook\d{2}|MacBookAir([8-9]|\d{2})|Macmini([8-9]|\d{2})|MacPro([7-9]|1\d)|iMacPro[1-9]|iMac(1[8-9]|2[0-9]),\d|MacBookPro(1[4-9]|2[0-9]),\d
I love the optimism of iMacPro[1-9] even though it never made it to iMacPro2! 🥲
Posted on 10-19-2022 06:47 AM
Hey what would have to be added to include M2 devices?
Posted on 10-19-2022 07:17 AM
From a hardware model perspective this might help you:
Posted on 10-19-2022 07:37 AM
I was finally able to get an M2 MacBook Air in my environment yesterday for the first time actually, and in Jamf its showing as Mac14,2, so that will fall into the first piece of the regex "Mac1[3-9]" already. I'll monitor this for any changes, but at quick glance it appears that Apple is starting to consolidate their model identifiers in some fashion.
Posted on 02-09-2023 11:56 AM
Fantastic thank you @Eltord
Posted on 11-02-2023 09:27 AM
will this need to be updated each time new mac models come out?
(^Mac1[3-9]|MacBook\d{2}|MacBookAir([8-9]|\d{2})|Macmini([8-9]|\d{2})|MacPro([7-9]|1\d)|iMacPro[1-9]|iMac(1[8-9]|2[0-9]),\d|MacBookPro(1[4-9]|2[0-9]),\d)
Posted on 11-08-2023 09:52 AM
I think in small ways. Have you tested?
I will also look into this.
Posted on 11-08-2023 10:04 AM
This might help you.
And this Nation thread: (to capture unsupported)
https://community.jamf.com/t5/jamf-pro/regex-for-unsupported-macos-ventura-computers/m-p/273276