Venturer
Venturer

Reputation: 84

How to silently upgrade EmEditor

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).

Upvotes: 0

Views: 110

Answers (1)

Yutaka
Yutaka

Reputation: 1806

Please try:

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

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

Upvotes: 1

Related Questions