psexec%1不是有效的Win32应用程序

问题描述 投票:-1回答:1

这是我用来运行远程服务器上的exe文件的代码。我在我的Web服务器中使用以下代码部署了控制台应用程序,以调用远程服务器上的exe。但我收到错误“psexec%1不是一个有效的Win32应用程序”。我在我的本地机器上测试了这个代码它工作得很好......但它不能在服务器上运行。

        ProcessStartInfo info = new ProcessStartInfo("C:\\PsTools");
        info.FileName = @"C:\PsTools\psexec.exe";
        info.Arguments = @"\\" + "MyComputerName" + @" -h D:\Idealake\Schedulers\SBIHangFireConsole\bin\Debug\SBIHangFireConsole.exe";
        info.RedirectStandardOutput = true;
        info.UseShellExecute = false;
        Process p = Process.Start(info);

服务器细节 -

内核版本:Windows Server 2012 R2标准版,多处理器免费产品类型:标准版产品版本:6.3服务包:0内核版本号:9600注册组织:注册所有者:Windows用户IE版本:9.0000系统root:C:\ Windows处理器: 4处理器速度:2.5 GHz处理器类型:AMD Opteron(tm)处理器6380物理内存:2 MB视频驱动程序:VMware SVGA 3D

此软件包中的PsTools版本:2.45

c# windows remote-access jobs
1个回答
0
投票
Install Power Shell in the Remote PC
Enable Power Shell Remoting to execute Powershell Commnads on the remote server by using the command "Enable-PSRemoting"
Add the server from which you are making the call as a Trusted one by using the command-
set-item wsman:\localhost\Client\TrustedHosts -value 172.16.0.0

注意:确保在两台计算机上运行上述命令

Now use the below code in your project to execute exe on remote server


  Runspace runspace = RunspaceFactory.CreateRunspace();
  runspace.Open();
  Pipeline pipeline = runspace.CreatePipeline();
  ps.Commands.AddScript("$User = \"domain\\username\"");
  ps.Commands.AddScript("$PWord = ConvertTo-SecureString -String \"yourpassword\" - 
  AsPlainText -Force");
  ps.Commands.AddScript("$Credential = New-Object -TypeName 
  System.Management.Automation.PSCredential -ArgumentList $User, $PWord");
  ps.Commands.AddScript("Invoke-Command -ComputerName REMOTECOMPUTERIP -ScriptBlock { 
  D:\\TestApp.exe } -cred $Credential");

  Collection<PSObject> resultst = ps.Invoke();
                Collection<ErrorRecord> errors = ps.Streams.Error.ReadAll();
                StringBuilder errorDetails = new StringBuilder();
                if (errors != null && errors.Count > 0)
                {
                    foreach (ErrorRecord er in errors)
                    {
                        errorDetails.AppendLine(er.Exception.ToString());

                    }
                    throw new Exception(errorDetails.ToString());
                }

                Console.WriteLine(errorDetails.ToString());
                StringBuilder stringBuilder = new StringBuilder();
                foreach (PSObject obj in resultst)
                {
                    stringBuilder.AppendLine(obj.ToString());
                }`enter code here`
                Console.WriteLine(stringBuilder.ToString());
                runspace.Close();
© www.soinside.com 2019 - 2024. All rights reserved.