Post

Replies

Boosts

Views

Activity

Reply to iOS 14.2 device throws errors for Encrypted DNS Payload
Thank you for your suggestion. We had the basic DNSSettings work and are just trying the esoteric settings. I am confused about your statement "ConnectIfNeeded does not apply to DNSSettings" The Apple documentation https://developer.apple.com/documentation/devicemanagement/dnssettings/ondemandruleselement/actionparameters state it is a valid setting DomainAction string (Required) The DNS settings behavior for the specified domains. Allowed values are: NeverConnect: Do not use the DNS Settings for the specified domains. ConnectIfNeeded: Allow using the DNS Settings for the specified domains. Possible values: NeverConnect, ConnectIfNeeded Are we misinterpreting the docs?
Nov ’20
Reply to What is the format of the Timezone in the new SettingsCommand.Command.Settings.TimeZone setting?
Is this command applicable to supervised devices only? On unsupervised device the command failed with CommandFormatError error. Neither in https://developer.apple.com/documentation/devicemanagement/settingscommand/command/settings/timezone nor in response below it is mentioned that the command is supported on supervised devices only. Request: <plist version="1.0"> &#9;<dict> &#9;&#9;<key>CommandUUID</key> &#9;&#9;<string>337531bb-0b5d-4959-aad8-6bb5751bfeed</string> &#9;&#9;<key>Command</key> &#9;&#9;<dict> &#9;&#9;&#9;<key>Settings</key> &#9;&#9;&#9;<array> &#9;&#9;<dict> &#9;&#9;&#9;&#9;<key>Item</key> &#9;&#9;&#9;&#9;<string>TimeZone</string> &#9;&#9;&#9;&#9;<key>TimeZone</key> &#9;&#9;&#9;&#9;<string>Europe/Paris</string> &#9;&#9;</dict> </array> &#9;&#9;&#9;<key>RequestType</key> &#9;&#9;&#9;<string>Settings</string> &#9;&#9;</dict> &#9;</dict> </plist> Response: <plist version="1.0"> <dict> <key>CommandUUID</key> <string>337531bb-0b5d-4959-aad8-6bb5751bfeed</string> <key>Settings</key> <array> <dict> <key>Item</key> <string>TimeZone</string> <key>Status</key> <string>CommandFormatError</string> </dict> </array> <key>Status</key> <string>Acknowledged</string> <key>UDID</key> <string>17885e13a0919f1bb24bd4e410e6260552af0afe</string> </dict> </plist>
Oct ’20