2017-02-26 152 views

回答

4

尝试:使用此命令可以列出所有正在运行的杀毒软件在您的系统。应该的Windows Vista工作,后来

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

Reference

+0

怎么更新?例如,如果防病毒安装,但需要更新才能正常工作 –

+0

任何使防病毒无法正常工作的东西,比如更新?或需要激活(许可) –

+2

大多数主要的防病毒公司都有监视工具来告诉您网络中的计算机是否具有最新的防病毒软件。 – Squashman

2

10(在这个时刻,我不能在其他版本的测试,但它应该为Windows 7或更高版本至少工作)

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

你可以使用带有findstr命令wmic命令

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