Posted on 10-08-2020 12:09 AM
This morning i saw a couple of machines with a MacOS version of 10.16.
Isn't Big Sur supposed to be 11.0?
Posted on 10-08-2020 05:34 AM
They're using 10.16 for now. I don't know when the official switch over to 11 is going to be yet.
Posted on 10-09-2020 12:47 AM
ok, why not use 11.0 from the start?
We probably never know...
Posted on 10-09-2020 05:42 AM
it looks like Apple has changed from 10.16 and is now showing 11.0
Posted on 10-09-2020 08:46 AM
@MikeF on Public Beta 9 of Big Sur, Apple now shows macOS 11.0 but JAMF still reports it as 10.16.0 in the current version (10.24.2)...
Posted on 10-09-2020 09:09 AM
Sometimes the macOS version is written in different ways in multiple places on the file system. It's not (necessarily) consistent. In smart groups, this can be a little frustrating I suppose, but, just know this & have a way of handling it...
Here is one way (certainly not the only way) to deal with this in a script:
macosx="$(/usr/bin/sw_vers -productVersion | /usr/bin/awk -F '.' '{print $2}')"
macos11="$(/usr/bin/sw_vers -productVersion | /usr/bin/awk -F '.' '{print $1}')"
if [ "$macosx" -gt 15 ] || [ "$macos11" = 11 ]
then
do something here...
fi
This would account for if the version comparison uses 11 as the 1st number, or something greater than 15 (like 16...) as the 2nd number. Enjoy!
Posted on 11-17-2020 08:05 AM
Hello, thanks for the post and the discussion around this. Sorry for the confusion.
Apple reports Big Sur in two different ways depending on if the binary checking the OS build was built on previous versions of Xcode or the newly released version of Xcode 12.
Starting with Jamf Pro 10.25.2, released today, the Jamf Pro management framework has been updated with Xcode 12 so it will now report Big Sur as macOS 11.
Please let us know if you have any questions.
Thanks!
Mike
Posted on 12-03-2020 07:38 AM
I have a smart group for Big Sur (Operating System Version like 11.) and another for Big Sur and later OSes (greater than or equal to 11.0.0).
Is it fair to assume that the minor build increments for Big Sur will be 11.1, 11.2 etc., and the next OS will be versioned as macOS 12?