Install msi with msiexec in a Specific Directory

后端 未结 13 2392
独厮守ぢ
独厮守ぢ 2020-12-01 04:15

I want to install a msi with msiexec in a specific directory. I\'m using:

msiexec /i \"msi path\" INSTALLDIR=\"C:\\myfolder\" /qb

It is no

13条回答
  •  粉色の甜心
    2020-12-01 05:04

    This one worked for me too

    msiexec /i "msi path" INSTALLDIR="D:\myfolder" /q
    

    I had tried two other iterations and both installed in the default C:\Program Files

    INSTALLDIR="D:\myfolder" /q got it installed on the other drive.

提交回复
热议问题