7 lines
175 B
PowerShell
7 lines
175 B
PowerShell
if((Get-MpComputerStatus).BehaviorMonitorEnabled -eq "True") {
|
|
Write-Output "Device Compliant"
|
|
exit 0
|
|
} else {
|
|
Write-Output "Device Non-Compliant"
|
|
exit 1
|
|
} |