在应用程序启动时禁用Windows服务

在应用程序启动时禁用Windows服务

问题描述:

由于 VLC冲突我必须关闭Windows我的应用程序启动时的高级文本服务.有什么特殊的API吗?它将对具有默认权限的用户有效吗?

Because of VLC conflict I have to turn off Windows Advanced Text Services at my application launch. Is there any special API for that? Will it work for user with default rights?

ServiceController _ServiceController = new ServiceController([NameService]);
if (!_ServiceController.ServiceHandle.IsInvalid) 
{
     _ServiceController.Stop();
     _ServiceController.WaitForStatus(ServiceControllerStatus.Stopped, TimeSpan.FromMilliseconds(uConstante.CtTempoEsperaRespostaServico));
}