ActiveXperts Network Monitor
Monitor servers, workstations, devices and applications in your network

Quicklinks


Internet Information Server 6.x Certificates - Scripts

List Instances of the IIsCertMapper Class
List Instances of the IIsCertMapperSetting Class


You can use any of the VBScript programs below in ActiveXperts Network Monitor. Click here for an explanation about how to include scripts in ActiveXperts Network Monitor.



List Instances of the IIsCertMapper Class


Demonstration script that displays all instances of the IIsCertMapper class.
strComputer = "."
Set objWMIService = GetObject _
    ("winmgmts:{authenticationLevel=pktPrivacy}\\" _
        & strComputer & "\root\microsoftiisv2")

Set colItems = objWMIService.ExecQuery("Select * from IIsCertMapper")

For Each objItem in colItems
    Wscript.Echo "Name: " & objItem.Name
Next
	

List Instances of the IIsCertMapperSetting Class


Demonstration script that displays all instances of the IIsCertMapperSetting class.
strComputer = "."
Set objWMIService = GetObject _
    ("winmgmts:{authenticationLevel=pktPrivacy}\\" _
        & strComputer & "\root\microsoftiisv2")

Set colItems = objWMIService.ExecQuery _
    ("Select * from IIsCertMapperSetting")

For Each objItem in colItems
    Wscript.Echo "Name: " & objItem.Name
Next