Welcome to the Tweaking4All community forums!
When participating, please keep the Forum Rules in mind!
Topics for particular software or systems: Start your topic link with the name of the application or system.
For example “MacOS X – Your question“, or “MS Word – Your Tip or Trick“.
Please note that switching to another language when reading a post will not bring you to the same post, in Dutch, as there is no translation for that post!
[Solved] Lazarus - macOS - How to open a specific System Preferences pane from Pascal?
Delphi, Lazarus, Free Pascal
(@hans)
Famed Member Admin
Joined: 12 years ago
Posts: 2834
Topic starter
October 10, 2019 4:46 AM
With the new Catalina, we are being challenged yet again with Apple security crap ...
In this case, to assist the end user, I want a button that opens the "System Preferences" - "Security" panel.
This is how this can be done (uses unit "process"):
RunCommand('/usr/bin/open',['x-apple.systempreferences:com.apple.preference.security'],s);
Now this wasn't enough for me, I wanted the "Privacy" tab open
RunCommand('/usr/bin/open',['x-apple.systempreferences:com.apple.preference.security?Privacy'],s);
See also: this forum post