# Check if exploit protection settings are applied $exploitProtection = Get-MpPreference | Select-Object -ExpandProperty ExploitProtection if ($exploitProtection) { Write-Output "Exploit protection settings are applied." exit 0 } else { Write-Output "Exploit protection settings are not applied." exit 1 }