How to specify several command-line args from msiexec ? #663
Replies: 1 comment
-
The fix was added #664 Related issue: #664 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Using args section I only can specify one arg. For example disable UI: msiexec /i Setup.msi /qb+!
What if I need to specify several arguments like
msiexec /i Setup.msi /qb+! /le! 'C:\log\log.txt'
?That will not work since autoupdater for some reason put value from args to quotas and as result we have msiexec /i Setup.msi "/qb+! /le! 'C:\log\log.txt'" which is wrong since args are in quotas. That will be syntax error
Another example. I cannot execute
msiexec /i Setup.msi /qb+! TARGETDIR=C:\installfolder
,since when I specify args as/qb+! TARGETDIR=C:\installfolder
the final command will bemsiexec /i Setup.msi "/qb+! TARGETDIR=C:\installfolder"
-which will lead to syntax errorBeta Was this translation helpful? Give feedback.
All reactions