how to enable / disable system search option via c # program
yes, I want to enable / disable (Start-> Search). I already disabled it through the program, I don't know how to enable it ..
Maybe you should initiate ServiceController and stop / start it
ServiceController myService = new ServiceController("WSearch"); ... myService.Stop(); ... myService.Start();