是否有命令检查是否安装了防病毒软件?

时间:2017-02-26 18:19:56

标签: batch-file cmd antivirus

我正在寻找一个命令来列出Windows上安装的 antivirus(s)。如果当前没有安装,我希望表明

非常感谢

3 个答案:

答案 0 :(得分:4)

尝试使用wmic命令和findstr命令。应该适用于 Windows Vista 及更高版本

wmic /node:localhost /namespace:\\root\SecurityCenter2 path AntiVirusProduct Get DisplayName | findstr /V /B /C:displayName || echo No Antivirus installed

Reference

答案 1 :(得分:2)

至少在Windows 10中(此刻我无法在另一个版本中测试它,但它至少应该适用于Windows 7或更高版本)

wmic /namespace:\\root\SecurityCenter2 path AntiVirusProduct get * /value

答案 2 :(得分:2)

您可以使用此命令列出系统中所有正在运行的防病毒软件:

WMIC /Node:localhost /Namespace:\\root\SecurityCenter2 Path AntiVirusProduct Get displayName /Format:List