我正在尝试编写一个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"但是,当我尝试从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]..如何将参数传递给installutil?任何帮助都是非常感谢的。
发布于 2013-11-19 19:30:44
通过使用Start-Process cmdlet使其正常工作
$x=""
$x = "/ControllerGroup=$controllerGroup”, “/username=$Username” , "/password=$Password", "/unattended" , $ServiceExecutablePath
Start-Process –FilePath C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319\InstallUtil.exe –ArgumentList $x –NoNewWindowhttps://stackoverflow.com/questions/19405391
复制相似问题