public/cisa/entra/Test-MtCisaAppGroupOwnerConsent.ps1
|
function Test-MtCisaAppGroupOwnerConsent { <# .SYNOPSIS Checks if group owners can consent to apps .DESCRIPTION Group owners SHALL NOT be allowed to consent to applications. .EXAMPLE Test-MtCisaAppGroupOwnerConsent Returns true if disabled .LINK https://maester.dev/docs/commands/Test-MtCisaAppGroupOwnerConsent #> [CmdletBinding()] [OutputType([bool])] param() Add-MtTestResultDetail -SkippedBecause Custom -SkippedCustomReason "This test has been deprecated by CISA as of March 2025 (MS.AAD.5.4v1)." return $null } |