VBScript Code to List SMTP Domain Setting Information
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.
Example(s)
strComputer = "."
Set objWMIService = GetObject _
("winmgmts:{authenticationLevel=pktPrivacy}\\" _
& strComputer & "\root\microsoftiisv2")
Set colItems = objWMIService.ExecQuery _
("Select * from IIsSmtpDomainSetting")
For Each objItem in colItems
For Each strTurn in objItem.AuthTurnList
Wscript.Echo "Authentication Turn List: " & strTurn
Next
Wscript.Echo "CSide Etrn Domains: " & objItem.CSideEtrnDomains
Wscript.Echo "Name: " & objItem.Name
Wscript.Echo "Relay For Authentication: " & objItem.RelayForAuth
Wscript.Echo "Relay IP List: " & objItem.RelayIpList
Wscript.Echo "Route Action: " & objItem.RouteAction
Wscript.Echo "Route Action String: " & objItem.RouteActionString
Wscript.Echo "Route Password: " & objItem.RoutePassword
Wscript.Echo "Route User Name: " & objItem.RouteUserName
Next
