Some mix up here with a wrong property converted to boolean.
|
if (-not([string]::IsNullOrEmpty($AppAssignmentItem.EnableRestartGracePeriod))) { |
|
$AppAssignmentArgs.Add("EnableRestartGracePeriod", $AppAssignmentItem.EnableRestartGracePeriod) |
|
} |
|
if (-not([string]::IsNullOrEmpty($AppAssignmentItem.RestartGracePeriodInMinutes))) { |
|
$AppAssignmentArgs.Add("RestartGracePeriod", [System.Convert]::ToBoolean($AppAssignmentItem.RestartGracePeriodInMinutes)) |
|
} |
Some mix up here with a wrong property converted to boolean.
IntuneAppFactory/Scripts/New-AppAssignment.ps1
Lines 158 to 163 in 632e043