Login Register


[VB6] Get info about AV & Firewall filter_list
Author
Message
[VB6] Get info about AV & Firewall #1
One of my sources collection, for whole website with sources PM me.

Code:
Public Function GetFWAV() As String On Error Resume Next Dim colItems As Object Dim objItem As Object Dim objWMIService As Object Set objWMIService = GetObject("winmgmts:\\.\root\SecurityCenter") Set colItems = objWMIService.ExecQuery("Select * from FirewallProduct") Dim tmp As String, endt As String tmp = "-" For Each objItem In colItems tmp = objItem.CompanyName & " " & objItem.DisplayName & " (" & objItem.versionnumber & ")" 'objItem.Enabled Next endt = tmp tmp = "-" Set colItems = objWMIService.ExecQuery("Select * from AntiVirusProduct") For Each objItem In colItems tmp = objItem.CompanyName & " " & objItem.DisplayName & " (" & objItem.versionnumber & ")" 'objItem.OnAccessScanningEnabled 'Enabled ? 'objItem.ProductUptoDate 'Updated ? Next GetFWAV = endt & "|" & tmp End Function
I'm not author of this
I do not post sh1t, or backdoored software.
[Image: fire.jpg]

Reply

RE: [VB6] Get info about AV & Firewall #2
WMI works in VB6? Awesome. Smile
[Image: rytwG00.png]
Redcat Revolution!

Reply

RE: [VB6] Get info about AV & Firewall #3
dunno, I've found this deeply in internet, but if You could check if this works it will be awesome! :thumbs:
I do not post sh1t, or backdoored software.
[Image: fire.jpg]

Reply







Users browsing this thread: 1 Guest(s)