tests/Test-Assessment.21813.ps1
<# .SYNOPSIS #> function Test-Assessment-21813{ [ZtTest( Category = 'Privileged access', ImplementationCost = 'Low', Pillar = 'Identity', RiskLevel = 'Low', SfiPillar = 'Protect identities and secrets', TenantType = ('Workforce'), TestId = 21813, Title = 'High Global Administrator to privileged user ratio', UserImpact = 'Low' )] [CmdletBinding()] param() Write-PSFMessage '🟦 Start' -Tag Test -Level VeryVerbose $activity = "Checking High Global Administrator to privileged user ratio" Write-ZtProgress -Activity $activity -Status "Getting policy" $result = $false $testResultMarkdown = "Planned for future release." $passed = $result Add-ZtTestResultDetail -TestId '21813' -Title "High Global Administrator to privileged user ratio" ` -UserImpact Low -Risk Low -ImplementationCost Low ` -AppliesTo Identity -Tag Identity ` -Status $passed -Result $testResultMarkdown -SkippedBecause UnderConstruction } |