Additional Script Updates
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
# 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
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
# Apply recommended exploit protection settings
|
||||
Add-MpPreference -ExploitProtectionSettings "Recommended"
|
||||
exit 0
|
||||
Reference in New Issue
Block a user