private/tests/Test-Assessment.21830.ps1
<# .SYNOPSIS #> function Test-Assessment-21830{ [CmdletBinding()] param() Write-PSFMessage '🟦 Start' -Tag Test -Level VeryVerbose $activity = "Checking Highly privileged roles are only activated in a PAW/SAW device" Write-ZtProgress -Activity $activity -Status "Getting policy" $result = $false $testResultMarkdown = "Planned for future release." $passed = $result Add-ZtTestResultDetail -TestId '21830' -Title "Highly privileged roles are only activated in a PAW/SAW device" ` -UserImpact Low -Risk High -ImplementationCost Medium ` -AppliesTo Identity -Tag Identity ` -Status $passed -Result $testResultMarkdown -SkippedBecause UnderConstruction } |