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
msiexec /i "msi path" INSTALLDIR="C:\myfolder" /q
Only this variant worked well.