11 lines
326 B
PowerShell
11 lines
326 B
PowerShell
# 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
|
|
}
|