How do I find all the available web site logging formats available?
Example Output
NCSA Common Log File Format Microsoft IIS Log File Format W3C Extended Log File Format ODBC Logging
Set Obj = getObject("IIS://Localhost/W3SVC/INFO")
Logging = Obj.LogModuleList
Options = Split(Logging, ",")
for pos = LBound(options) to ubound(options)
WScript.Echo Options(pos)
next |