Microsoft Installer command line string parameter not working?

后端 未结 2 1350
再見小時候
再見小時候 2020-12-04 03:36

So I am trying to run a quite installation, with my msi, and it seems like I can easily pass a number for a parameter that I have, but I can\'t seem to pass in a string...I

2条回答
  •  -上瘾入骨i
    2020-12-04 04:00

    If you invoke from Powershell, you should use the call operator & This should then also work with parameters enclosed in quotes:

    & msiexec /i `"My Installer.msi`" /quiet JREPATH=`"c:\BLA BLA`"
    

提交回复
热议问题