检测当前安装的防病毒软件

发布于 2024-09-27 20:17:21 字数 408 浏览 5 评论 0原文

可能的重复:
使用 C# 检测 Windows 上的防病毒
如何检测是否安装了病毒扫描程序和/或防火墙? (以及其他一些与安全相关的问题。)

有没有办法在不搜索已知进程的情况下检测当前安装的杀毒软件?

Possible Duplicates:
Detect Antivirus on Windows using C#
How to detect if a virusscanner and/or firewall is installed? (And a few other security-related Q's.)

is there a way to detect currently instaled av without searching for known processes?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

你的心境我的脸 2024-10-04 20:17:21

是的,有。您可以使用 WMI(我假设您正在询问 Windows)来检查已安装的防病毒程序实例。从 C# 来看,这非常简单,这个 链接 很好地解释了如何操作。还可以从 C++ 访问 WMI,此处对此进行了解释。另外,对于任何与 WMI 相关的内容,我强烈推荐 WMI Studio

Yes there is. You can use WMI, I assume you are asking about Windows, to check installed instances of an anti-virus program. It is quite simple from C# and this link gives a good explanation of how to do it. It is also possible to access WMI from C++ and that is explained here. Also for anything WMI related I highly recommend the WMI Studio.

各自安好 2024-10-04 20:17:21

这取决于 AV 软件和操作系统,但看起来您可以使用 WMI。这是一个使用 WMI 脚本的示例 - 从 C++ 使用 WMI 超出了我的知识范围,抱歉。

http://web.archive.org/web/20130127234041/http://blogs.msdn.com/b/alejacma/archive/2008/05/ 12/如何使用-wmi-vbscript.aspx获取防病毒信息

It depends on the AV software and the OS but it looks like you can use WMI. Here's an example on using WMI script - using WMI from C++ is outside of my knowledge, sorry.

http://web.archive.org/web/20130127234041/http://blogs.msdn.com/b/alejacma/archive/2008/05/12/how-to-get-antivirus-information-with-wmi-vbscript.aspx

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文