How to silently upgrade EmEditor

98 Views Asked by At

I would like to automatically roll out the latest version of EmEditor using a script, so it will update any previous installed version, without prompting the user to select Next, Next, Finsh, etc. and keep all the existing settings.

I know "msiexec /i emed64_xx_y_z.msi" should work with some switches, but could you advise on the correct switches to do this silently (and ideally provide a "Completed" progress at the end only).

1

There are 1 best solutions below

2
On BEST ANSWER

Please try:

msiexec /i "(...path...)emed64_x.x.x.msi" /q MSIINSTALLPERUSER=1

Reference: How can I install EmEditor without displaying dialog boxes?