windows中允许服务与桌面交互的更改方法示例

前端技术 2023/09/09 .NET

在Windows服务的安装类ProjectInstaller中加入以下方法:

复制代码 代码如下:

protected override void OnCommitted(System.Collections.IDictionary savedState)
{
base.OnCommitted(savedState);
//将服务更改为允许桌面交互模式
ConnectionOptions coOptions = new ConnectionOptions();
coOptions.Impersonation = ImpersonationLevel.Impersonate;
ManagementScope mgmtScope = new System.Management.ManagementScope(@\"root\\CIMV2\", coOptions);
mgmtScope.Connect();
ManagementObject wmiService;
wmiService = new ManagementObject(\"Win32_Service.Name=\'这里是当前服务名\'\");
ManagementBaseObject InParam = wmiService.GetMethodParameters(\"Change\");
InParam[\"DesktopInteract\"] = true;
ManagementBaseObject OutParam = wmiService.InvokeMethod(\"Change\", InParam, null);
}

本文地址:https://www.stayed.cn/item/24368

转载请注明出处。

本站部分内容来源于网络,如侵犯到您的权益,请 联系我

我的博客

人生若只如初见,何事秋风悲画扇。