I've tried any and every manner of method to unlock the System Preference for the 3rd party pane of Wacom Pro tablets. It's ranged from variations on this:
#!/bin/sh
security authorizationdb write system.preferences allow
security authorizationdb write com.wacom.settingsPrefPane allow
exit
or
#!/bin/sh
security authorizationdb write system.preferences allow
security authorizationdb write /Library/PreferencePanes/WacomTablet.prefPane allow
exit
to something like this: ```
!/bin/sh
security authorizationdb write system.preferences allow
security authorizationdb write /Library/PreferencePanes/WacomTablet.prefPane/Contents/MacOS/WacomTablet allow
exit
to pushing the MCX unlock of either: ```
<key>allow</key>
<string>com.wacom.settingsPrefPane</string>
or
<key>true</key>
<string>com.wacom.settings.PrefPane</string>
Tried both as computer and user level enforced. At this point, I'm scratching my head and wondered if others had suggestions or have gone through this before. All my tricks from the past are not working... :(
Thanks in advance.