This plugin will stop the MCE services when MediaPortal starts and it will start them back up when it exits. Perfect for those out there that are running MCE.
The plugin can be downloaded here.
Copy the plugin .dll file to your plugins/process folder then enable the plugin from Configuration.exe
Services will stop when MediaPortal starts, and they will resume when it exits.
The plugin can be downloaded here.
Copy the plugin .dll file to your plugins/process folder then enable the plugin from Configuration.exe
Services will stop when MediaPortal starts, and they will resume when it exits.
Code:
myService = new ServiceController("Media Center Receiver Service");
myService.Stop(); // Can also Pause() or Start()
myService = new ServiceController("Media Center Scheduler Service");
myService.Stop(); // Can also Pause() or Start()