Hi Joachim,
The enforcedSoftwareUpdateDelayInDays
property in the iOS update policy is not deprecated. This property represents the number of days a software update is delayed for supervised devices. For example, if the value is 10, the supervised devices will update the software 10 days after the software update is released. If this property is null, the device will update the software as soon as the update is available. To define a default delay, you can set a value for the enforcedSoftwareUpdateDelayInDays
property in each update policy.
Please note that this property applies to supervised devices only. Non-supervised devices ignore this setting and install updates according to the default settings on the device.
Here is a sample code snippet for setting this property:
PATCH https://graph.microsoft.com/beta/deviceManagement/deviceConfigurations/{id}
Content-Type: application/json
{
"enforcedSoftwareUpdateDelayInDays": 10
}
Replace {id}
with the id of your update policy.
Read more on this API from this page. You can also see how to set the delay in the policy via the Intune UI from here.