Search Indexing Server Using a Predefined Query
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)
On Error Resume Next Set objConnection = CreateObject("ADODB.Connection") objConnection.ConnectionString = "provider=msidxs;" objConnection.Properties("Data Source") = "Script Catalog" objConnection.Open Set objCommand = CreateObject("ADODB.Command") strQuery = "Create View #AllProps as Select * from Scope()" Set objRecordSet = objConnection.Execute("Select * from Extended_FileInfo") Do While Not objRecordSet.EOF Wscript.Echo objRecordSet("Filename") & ", " & objRecordSet("Size") & _ ", " & objRecordSet("DocAuthor") objRecordSet.MoveNext Loop