0

在我的解决方案中,我有一个控制台项目reg来启动我的应用程序,它工作正常

现在我想将控制台替换为 Windows 服务Service1 ,但它不起作用并且给我一个错误来连接数据库

这是我的解决方案,我Service1 item改用控制台reg

在此处输入图像描述

这是我的onStart方法

      protected override void OnStart(string[] args)
      {
            System.Diagnostics.Debugger.Launch();
                 EventLog.WriteEntry("Service Started...");
                 ConfigureServer();
      }

在这里,问题发生了 无法运行登录请求的数据库xds

 using (System.Management.Automation.PowerShell powershell = System.Management.Automation.PowerShell.Create())
                     {
                          powershell.Runspace = myRunSpace;
                          powershell.Commands.AddScript("Get-CsTrustedApplicationPool");
                          Collection<PSObject> results = null;
                          Collection<ErrorRecord> errors = null;
                          try
                          {
                                results = powershell.Invoke();
                                errors = powershell.Streams.Error.ReadAll();
                          }
4

1 回答 1

1

您的服务在哪个帐户上运行?

在此处输入图像描述

于 2012-07-17T03:35:33.127 回答