我想在远程服务上安装Windows服务。在下面的博客中,您曾说过使用'servicecontroller'
Installing a win32 service using MSBuild and Microsoft.Sdc.Tasks
然而,在“MSBuild社区任务”的.chm文件中的“ServiceController成员”中,没有任何内容可以接受要为ex安装的服务的路径。 'C:\ myservice.exe'
请建议我如何实现远程安装服务的任务。
谢谢, Prasad M。
答案 0 :(得分:1)
ServiceController任务不允许您安装服务。它只是控制现有的服务。
我建议您使用您引用的问题中列出的其他方法:
<Exec WorkingDirectory="C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727"
Command="InstallUtil.exe -i XXX.exe" />