Additional Script Updates
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
# Check if network protection is enabled
|
||||
$networkProtection = Get-MpPreference | Select-Object -ExpandProperty EnableNetworkProtection
|
||||
|
||||
if ($networkProtection -eq 1) {
|
||||
Write-Output "Network protection is enabled."
|
||||
exit 0
|
||||
} else {
|
||||
Write-Output "Network protection is disabled."
|
||||
exit 1
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
# Enable network protection
|
||||
Set-MpPreference -EnableNetworkProtection Enabled
|
||||
exit 0
|
||||
Reference in New Issue
Block a user