AV Enumeration
AV Enumeration
Check if Defender is enabled
Get-MpComputerStatus
Get-MpComputerStatus | Select AntivirusEnabledCheck if defensive modules are enabled
Get-MpComputerStatus | Select RealTimeProtectionEnabled, IoavProtectionEnabled,AntispywareEnabled | FLCheck if tamper protection is enabled
Get-MpComputerStatus | Select IsTamperProtected,RealTimeProtectionEnabled | FLAlternate AV products
Get-CimInstance -Namespace root/SecurityCenter2 -ClassName AntivirusProductDecode "Product State" to hex can help identify which antivirus is enabled
'0x{0:x}' -f <ProductState>
'0x{0:x}' -f 393472Last updated