将参数传递给bat文件,用于安装Windows服务

时间:2012-07-10 15:30:39

标签: batch-file

我想创建将安装Windows服务的bat文件,作为参数传递。

这是正在运行的bat文件的内容:

installutil "D:\MVisum\MVisumCCS\Message Generator\MessageGenerator.exe"

但这不是通用的。我试过了: installutil / i 1% 它不起作用。我想将我想要安装的服务路径作为参数传递给我的bat文件。

请帮帮我。

1 个答案:

答案 0 :(得分:1)

如果您的非通用工具正在运行,请尝试使用此通用

installutil %1

用法:

mybatchfile.bat "C:\myservice.exe"