- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Posted on 11-04-2022 07:15 AM
I did a search on this topic and the only thing I could find was almost three months old.
We are beginning to introduce M2 computers into our company and before I move ahead with installing Jamf Pro, I wanted to check and see if there are any current issues with Jamf that I need to be aware of.
Thanks.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Posted on 11-07-2022 05:30 AM
None once so ever. Where yes, test and validate everything. Changes with Apple hardware are usually far better flowing with configurations than changes with Windows hardware. Since you already have M1 in your fleet, M2 should literally be drop in place and move on.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Posted on 11-04-2022 09:00 AM
If you are moving from M1 to M2, I haven't seen any issues.
If you are moving from Intel to M2, then you will likely need to install Rosetta2 early in the enrollment process to be sure other app installers will install fine - however, most should be updated by now to handle Apple Silicon.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Posted on 11-04-2022 09:06 AM
@VintageMacGuy The M2 is new out of the box. Not a migration. We have about 2/3 of our users on M1 and the remaining on Intel Mac.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Posted on 11-07-2022 05:30 AM
None once so ever. Where yes, test and validate everything. Changes with Apple hardware are usually far better flowing with configurations than changes with Windows hardware. Since you already have M1 in your fleet, M2 should literally be drop in place and move on.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Posted on 11-07-2022 06:17 AM
Thank you.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Posted on 11-07-2022 10:08 AM
I run an early policy i.e. "00 - M1 Rosetta - Install" Scoped to All Managed Clients/All Managed Servers with a Trigger: Enrollment Complete and Execution Frequency: Once per computer and...
Script (After)
#!/bin/bash
arch=$(/usr/bin/arch)
if [ "$arch" == "arm64" ]; then
echo "Apple Silicon - Installing Rosetta"
/usr/sbin/softwareupdate --install-rosetta --agree-to-license
elif [ "$arch" == "i386" ]; then
echo "Intel - Skipping Rosetta"
else
echo "Unknown Architecture"
fi
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Posted on 11-07-2022 11:15 AM
@markdmatthews This is very helpful. Thank you.