1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 10:02:08 +02:00
tldr/pages/osx/spctl.md
Sebastiaan Speck be0823bbb6
pages.*/osx: use keith.github.io (#12192)
Co-authored-by: Alejandro Cervera <96702705+tricantivu@users.noreply.github.com>
2024-02-03 23:02:02 +01:00

21 lines
458 B
Markdown

# spctl
> Manage the security assessment policy subsystem.
> Utility for managing Gatekeeper in macOS.
> More information: <https://keith.github.io/xcode-man-pages/spctl.8.html>.
- Turn off Gatekeeper:
`spctl --master-disable`
- Add a rule to allow an application to run (labeling of rule is optional):
`spctl --add --label {{rule_name}} {{path/to/file}}`
- Turn on Gatekeeper:
`spctl --master-enable`
- List all rules on the system:
`spctl --list`