View Single Post
Old 11-22-2022, 03:40 PM   #1
donmontalvo
Junior Member
 
Join Date: Jan 2017
Posts: 24
Default Disable Apple Watch unlock checkbox

Unfortunately we need to disable this feature. After I dug a bit, found this file here:
/Users/<username>/Library/Containers/com.displaylink.DisplayLinkLoginHelper/Data/Library/Preferences/com.displaylink.DisplayLinkUserAgent.plist
We tried enforcing using a Configuration Profile (MDM is Jamf Pro), when we do that the setting is put in these two places:
$ defaults read /Library/Managed\ Preferences/com.displaylink.DisplayLinkUserAgent.plist
{
AppAutostart = 1;
AppleWatchUnlock = 0;
}
and:
$ defaults read /Library/Managed\ Preferences/<username>/com.displaylink.DisplayLinkUserAgent.plist
{
AppAutostart = 1;
AppleWatchUnlock = 0;
}
Neither seem to uncheck and grey out (enforce) the box.

I tried -bool false and -string 0 and neither work.

Hoping there's a manageable (programatic) way to do this.

Thoughts?
Attached Images
File Type: jpg displaylink-config-profile.jpg (11.9 KB, 0 views)

Last edited by donmontalvo; 11-22-2022 at 03:43 PM.
donmontalvo is offline   Reply With Quote