Skip to content

Instantly share code, notes, and snippets.

@sghiassy
Last active December 4, 2024 10:13
Show Gist options
  • Save sghiassy/a3927405cf4ffe81242f4ecb01c382ac to your computer and use it in GitHub Desktop.
Save sghiassy/a3927405cf4ffe81242f4ecb01c382ac to your computer and use it in GitHub Desktop.

Disable Device Enrollment Notification on Mac.md

Restart the Mac in Recovery Mode by holding Comment-R during restart

Open Terminal in the recovery screen and type

csrutil disable

Restart computer

Edit com.apple.ManagedClient.enroll.plist

In the terminal, type

sudo open /Applications/TextEdit.app /System/Library/LaunchDaemons/com.apple.ManagedClient.enroll.plist

change

<key>com.apple.ManagedClient.enroll</key>
        <true/>

to

<key>com.apple.ManagedClient.enroll</key>
        <false/>

Restart Computer again

So that the changes take effect

@moo84
Copy link

moo84 commented Dec 4, 2024

At what point do you use the SkipMDM steps if you are turning on a MacBook for the first time which is marked for JAMF activation/enrolment during initial setup?

Is disabling WIFI router still a workaround to get you into the OS / restore from a backup and then run the SkipMDM script?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment