Checks/Azure/Test-DefenderEnsureWdatpIsEnabled.ps1
|
function Test-DefenderEnsureWdatpIsEnabled { <# .SYNOPSIS Defender for Endpoint is enabled .DESCRIPTION **Azure subscription** integrates **Microsoft Defender for Endpoint** with **Defender for Cloud** via `WDATP`. The setting's presence and enabled state at the subscription scope are evaluated. .PARAMETER Check CIEMCheck object containing check metadata. #> [CmdletBinding()] [OutputType([PSCustomObject[]])] param( [Parameter(Mandatory)] [CIEMCheck]$Check ) $ErrorActionPreference = 'Stop' # TODO: Implement check logic based on Prowler check: defender_ensure_wdatp_is_enabled [CIEMScanResult]::Create($Check, 'MANUAL', 'This check requires manual implementation. See Prowler check defender_ensure_wdatp_is_enabled for reference.', 'N/A', 'defender Resources') } |