@k3vmo The utility just modifies the seedutil setting on the Mac. This command will read the current seedutil setting:
/System/Library/PrivateFrameworks/Seeding.framework/Resources/seedutil current | awk '/enrolled/{print $NF}'
You can wrap that as an EA to see who has used the utility. If the Mac isn't enrolled the response will be (null)
For any that don't return (null)
, you can use the following command to unenroll them:
/System/Library/PrivateFrameworks/Seeding.framework/Resources/seedutil unenroll
@k3vmo The utility just modifies the seedutil setting on the Mac. This command will read the current seedutil setting:
/System/Library/PrivateFrameworks/Seeding.framework/Resources/seedutil current | awk '/enrolled/{print $NF}'
You can wrap that as an EA to see who has used the utility. If the Mac isn't enrolled the response will be (null)
For any that don't return (null)
, you can use the following command to unenroll them:
/System/Library/PrivateFrameworks/Seeding.framework/Resources/seedutil unenroll
@sdagley works with Monterey, kudos!