小编use*_*642的帖子

使用 Powershell 中的 InstallUtil 安装服务(接受安装参数)

我正在尝试编写一个 powershell 脚本来安装接受安装参数的服务。

以下内容在命令提示符下有效

C:\Windows\Microsoft.NET\Framework\v4.0.30319>installutil.exe /ControllerGroup=Delivery     /username=userl /password=pwd /unattended    "C:\DocumentProcessingPlatform\Dpp.Service\bin\Debug\Dpp.Service.exe"
Run Code Online (Sandbox Code Playgroud)

但是,当我尝试从 Powershell 运行 installutil 时,它不起作用并给了我一个异常

Powershell脚本

$sn = " ControllerGroup=$line /username=$Username /password=$Password /unattended  ""$ServiceExecutablePath""" 
C:\Windows\Microsoft.NET\Framework64\v4.0.30319\InstallUtil.exe $sn

Exception occurred while initializing the installation:
System.ArgumentException: File  ControllerGroup=Delivery /username=usr /password=pwd /unattended C:\DocumentProcessingPlatform\Dpp.Service\bin\Debug\Dpp.Service.exe does not exist. If this parameter is used as an installer option, the format must be
/key=[value]..
Run Code Online (Sandbox Code Playgroud)

如何将参数传递给 installutil?任何帮助表示赞赏。

service installutil powershell-2.0

2
推荐指数
1
解决办法
8013
查看次数

标签 统计

installutil ×1

powershell-2.0 ×1

service ×1