1

我正在创建一个将修改 Windows 服务的应用程序。但是由于某种原因,它不会让我运行“cs config SERVICE_NAME set= SETTING”或修改注册表以更改服务的启动设置,因为需要管理员。我已经给它一个管理员帐户的完全管理员权限

无论我做什么,它总是会出现一个错误,说它无权访问注册表,或者它不会使用 CMD 设置它,因为它没有权限。它卡在的特定服务称为“DCOM Server Process Launcher”

这是我的应用清单中的安全设置

<trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
 <security>
  <requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
    <requestedExecutionLevel  level="requireAdministrator" uiAccess="false" />
  </requestedPrivileges>
  <applicationRequestMinimum>
    <defaultAssemblyRequest permissionSetReference="Custom" />
    <PermissionSet ID="Custom" SameSite="site" />
  </applicationRequestMinimum>
 </security>
</trustInfo>

这在它启动程序时赋予它管理员权限。我什至手动右键单击该文件并选择“以管理员身份运行”,但它仍然无法正常工作。

要进入注册表,这是代码,它还包含 CMD 进程。

RegistryKey key = null;
key = Registry.LocalMachine.OpenSubKey("SYSTEM\\CurrentControlSet\\Services\\" + service, true); //true should make it Read/Write??
if (key != null)
{
     //cmd.issueCmd("sc config " + service + " start= " + setting); //set a service with CMD
     key.SetValue("Start", val, RegistryValueKind.DWord); //set a service with Registry
     if (setting.Equals("delayed-auto"))
     {
         key.SetValue("DelayedAutoStart", 1, RegistryValueKind.DWord); //Add the Delayed-Start Registry if needed
      }
}
if (key != null)
{
    key.Close();
}
return;

这是 CMD 进程代码:

        //Create a Hidden CMD Prompt to issue commands
        ProcessStartInfo processStartInfo = new ProcessStartInfo();
        processStartInfo.RedirectStandardInput = true;
        processStartInfo.RedirectStandardOutput = true;
        processStartInfo.UseShellExecute = false;
        processStartInfo.CreateNoWindow = true;
        processStartInfo.FileName = "cmd.exe";
        processStartInfo.Verb = "runas"; //should give it admin??
        cmd = Process.Start(processStartInfo);
4

1 回答 1

1

经过大量研究,我找到了解决方案。我在 codeproject 上使用了这篇文章中提供的示例:http: //www.codeproject.com/Articles/7665/Extend-ServiceController-class-to-change-the-Start

在设置它并将其更改为我需要的方式之后,一切都适用于所有 Windows 操作系统(至少是 XP 和更新版本)。

于 2013-07-11T21:00:27.097 回答