本文介绍了使用NAnt在构建脚本中安装/卸载Windows服务的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

限时删除!!

NAnt是否可以使用InstallUtil实用程序或其他工具来安装或卸载Windows服务?

Does NAnt have the ability to install or uninstall a windows service, using the InstallUtil utility or whatever else?

推荐答案

您可以致电Nant的 exec 任务来调用InstallUtil,并可以传递参数来轻松安装或卸载服务

You can call Nant's exec task to call InstallUtil and can pass parameters to install or uninstall a service easily

 <target name="install-service">
    <exec program="${framework::get-framework-directory('net-2.0')}\InstallUtil.exe">
      <arg value="-i" />
      <arg value="/name=V1" />
      <arg value="C:\Service\SomeService.exe" />
    </exec>
  </target>

这篇关于使用NAnt在构建脚本中安装/卸载Windows服务的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

1403页,肝出来的..

09-07 00:18