Você pode ter sido enganado pelo marketing da MS chamando-o de Action Center
. O nome original encontrado na documentação é, na verdade, Security Center
.
De API da Central de Segurança :
I've managed to find these links:
Windows Security Center
"You have some Non Disclosure
Agreement document to sign before you
get the access to the security center.
The interface is not likely availble
publicly. The contact information can
be found at Implementing the Teredo
Security Model"
And there is WMI interface:
Code Snippet:
Set oWMI =
GetObject("winmgmts:{impersonationLevel=impersonate}!\.\root\SecurityCenter")
Set colItems = oWMI.ExecQuery("Select
* from AntiVirusProduct")
For Each objAntiVirusProduct In
colItems
msg = msg &
"companyName: " &
objAntiVirusProduct.companyName &
vbCrLf
msg = msg & "displayName:
" & objAntiVirusProduct.displayName &
vbCrLf
msg = msg & "instanceGuid:
" & objAntiVirusProduct.instanceGuid &
vbCrLf
msg = msg &
"onAccessScanningEnabled: " &
objAntiVirusProduct.onAccessScanningEnabled
& vbCrLf
msg = msg &
"productUptoDate: " &
objAntiVirusProduct.productUptoDate &
vbCrLf
msg = msg &
"versionNumber: " &
objAntiVirusProduct.versionNumber &
vbCrLf
msg = msg & vbCrLf
Next
WScript.Echo msg