mirror of
https://github.com/apple/device-management.git
synced 2026-07-10 21:13:42 +02:00
67 lines
1.8 KiB
YAML
67 lines
1.8 KiB
YAML
title: Managed Preferences
|
|
description: The payload that configures managed preferences.
|
|
payload:
|
|
payloadtype: com.apple.ManagedClient.preferences
|
|
supportedOS:
|
|
iOS:
|
|
introduced: n/a
|
|
macOS:
|
|
introduced: '10.7'
|
|
multiple: true
|
|
devicechannel: true
|
|
userchannel: true
|
|
supervised: false
|
|
requiresdep: false
|
|
userapprovedmdm: false
|
|
allowmanualinstall: true
|
|
userenrollment:
|
|
mode: forbidden
|
|
tvOS:
|
|
introduced: n/a
|
|
visionOS:
|
|
introduced: n/a
|
|
watchOS:
|
|
introduced: n/a
|
|
payloadkeys:
|
|
- key: PayloadContent
|
|
type: <dictionary>
|
|
presence: required
|
|
content: The dictionary containing app preference domains. The key names are application
|
|
preference domain identifiers (for example, `com.example.my-app`), or the string
|
|
`.GlobalPreferences` for the global domain. The values are the corresponding forced
|
|
and set-once preferences.
|
|
subkeys:
|
|
- key: ANY
|
|
type: <dictionary>
|
|
presence: required
|
|
content: The dictionary containing app preference domains.
|
|
subkeytype: PreferenceDomain
|
|
subkeys:
|
|
- key: Forced
|
|
type: <array>
|
|
presence: optional
|
|
content: The dictionary of forced settings.
|
|
subkeys: &id001
|
|
- key: Settings
|
|
type: <dictionary>
|
|
presence: required
|
|
subkeys:
|
|
- key: mcx_preference_settings
|
|
type: <dictionary>
|
|
presence: required
|
|
content: The dictionary of settings.
|
|
subkeys:
|
|
- key: ANY
|
|
type: <any>
|
|
presence: optional
|
|
content: The setting/value pairs.
|
|
- key: Set-Once
|
|
type: <array>
|
|
presence: optional
|
|
content: The dictionary of one-time settings.
|
|
subkeys: *id001
|
|
examples:
|
|
- title: Profile example
|
|
files:
|
|
- file: examples/mdm/profiles/com.apple.ManagedClient.preferences/example1.plist
|