Additional Script Updates
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
if((Get-MpPreference).PUAProtection -eq 1) {
|
||||
Write-Output "Device Compliant"
|
||||
exit 0
|
||||
} else {
|
||||
Write-Output "Device Non-Compliant"
|
||||
exit 1
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
try {
|
||||
Set-MpPreference -PUAProtection Enabled
|
||||
Write-Output "Device Remediated"
|
||||
exit 0
|
||||
}
|
||||
catch {
|
||||
Write-Output "Remediation Failed"
|
||||
exit 1
|
||||
}
|
||||
Reference in New Issue
Block a user