Can't query SystemIndex on my own machine when I specify the machine name
问题 I'm trying to write a simple program that would connect to remote machines and query the indexing status. Here's the code that does it on my machine. This works OK. using System; using Microsoft.Search.Interop; namespace IndexStatus { class Program { static void Main(string[] args) { CSearchManager manager = new CSearchManager(); CSearchCatalogManager catalogManager = manager.GetCatalog("SystemIndex"); _CatalogPausedReason pReason; _CatalogStatus pStatus; Console.WriteLine(catalogManager