标签: c# service group-policy
我也在网上搜索这个,但我很好奇是否有人知道允许用户安装服务的组策略,只安装服务或可能通过组策略安装它。提前致谢
答案 0 :(得分:1)
你需要使用像提升特权这样的东西
WindowsIdentity identity = new WindowsIdentity(accessToken); WindowsImpersonationContext context = identity.Impersonate();
看线程: Elevating process privilege programmatically?