假設我的網絡上有幾臺計算機上有一個名爲「MyService」的Windows服務和名爲「MyEXE」的可執行文件。如何在另一臺計算機上運行進程.net
是否可以(從「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);
}
}
也許我得到了整個架構錯了!
+1,PS Exec是在遠程機器上運行exe的方式。不管誰給了downvote,你可以說爲什麼,PS Exec有什麼問題?沒有評論的Downvotes是毫無意義的。 – 2009-04-22 14:33:58