mirror of
https://github.com/apple/device-management.git
synced 2026-08-13 12:00:21 +02:00
82 lines
2.2 KiB
YAML
82 lines
2.2 KiB
YAML
title: Identification
|
|
description: The payload that configures the names of the account user.
|
|
payload:
|
|
payloadtype: com.apple.configurationprofile.identification
|
|
supportedOS:
|
|
iOS:
|
|
introduced: n/a
|
|
macOS:
|
|
introduced: '10.7'
|
|
deprecated: '15.4'
|
|
multiple: false
|
|
devicechannel: true
|
|
userchannel: true
|
|
supervised: false
|
|
requiresdep: false
|
|
userapprovedmdm: false
|
|
allowmanualinstall: true
|
|
userenrollment:
|
|
mode: allowed
|
|
tvOS:
|
|
introduced: n/a
|
|
visionOS:
|
|
introduced: n/a
|
|
watchOS:
|
|
introduced: n/a
|
|
content: |-
|
|
This payload can be used on the device or user channel depending on what payload it is paired with.
|
|
|
|
Device channel:
|
|
*com.apple.MCX.FileVault2
|
|
*com.apple.ADCertificate.managed
|
|
*com.apple.DirectoryService.managed
|
|
|
|
User channel:
|
|
*com.apple.caldav.account
|
|
*com.apple.carddav.account
|
|
*com.apple.ews.account
|
|
*com.apple.ldap.account
|
|
*com.apple.mail.managed
|
|
payloadkeys:
|
|
- key: PayloadIdentification
|
|
type: <dictionary>
|
|
presence: required
|
|
content: The dictionary that contains details about the user.
|
|
subkeys:
|
|
- key: UserName
|
|
type: <string>
|
|
presence: required
|
|
content: The UNIX user name for the accounts.
|
|
- key: FullName
|
|
type: <string>
|
|
presence: required
|
|
content: The full name of the account.
|
|
- key: EmailAddress
|
|
type: <string>
|
|
presence: required
|
|
content: The address for the account.
|
|
- key: AuthMethod
|
|
type: <string>
|
|
presence: required
|
|
rangelist:
|
|
- Password
|
|
- UserEnteredPassword
|
|
content: The authorization method. Either the profile contains the password or
|
|
the user provides it.
|
|
- key: Password
|
|
type: <string>
|
|
presence: required
|
|
content: The password for the account. Required when the `AuthMethod` is `Password`.
|
|
- key: Prompt
|
|
type: <string>
|
|
presence: optional
|
|
content: The custom instructions for the user, if needed.
|
|
- key: PromptMessage
|
|
type: <string>
|
|
presence: optional
|
|
content: The additional descriptive text for the user prompt.
|
|
examples:
|
|
- title: Profile example
|
|
files:
|
|
- file: examples/mdm/profiles/com.apple.configurationprofile.identification/example1.plist
|