假设我有一个Windows服务“ MyService”和一个可执行文件“ MyEXE”,位于我的网络中的多台计算机上。

是否可以(从“ MyService”内部)在不同/相同的计算机上启动“ MyEXE”的多个实例,使其执行某些任务,然后将“真/假”结果返回给“ MyService”中的回调方法?

像这样

class MyService : ServiceBase
{
    delegate void UpdateCallBack(int id, bool updated)
    void CheckForUpdates()
    {
        bool updatesExist = someService.GetCurrentVersion() != currentVersion;
        if(updatesExist)
        {
            UpdatePC("C:\Program Files\MyApp.exe", 1, UpdateComplete);
            UpdatePC("\\somepc\Program Files\MyApp.exe", 1, UpdateComplete);
            UpdatePC("\\mypc\Program Files\MyApp.exe", 1, UpdateComplete);
        }
    }

    void UpdatePC(string filePath, int id, UpdateCallBack callback)
    {
       //This is where I am kind of lost
       SomeEXERunner runner = new SomeEXERunner();
       runner.Run(filePath,"-u",id,callback);
    }

    void UpdateComplete(int id, bool updated)
    {
       //do something
       if(!updated)
          EmailService.NotifyAdmin("PC Not updated", id);
    }
}


也许我弄错了整个架构!

最佳答案

您可以按照Ian所述使用PSexec,但我认为WMI是一种更好的方法,例如http://www.codeproject.com/KB/cs/EverythingInWmi02.aspx

关于c# - 如何在.net中的另一台计算机上运行进程,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/777466/

10-10 18:44