What is the cli command on the MSI to upgrade an existing version of RDM to the most recent? this machine is isolated from the internet and can't use an on-net upgrade method.
Thanks
Hello
You can use msiexec for that.
It can be as simple as `msiexec /i RemoteDesktopManager.2025.1.25.0.msi` (or providing the full path to the MSI if the current directory doesn't contain the installer).
You might append `/quiet` if this is being scripted to suppress the interface; otherwise it will block on the installer UI. Note that if you're not running interactively, you must be administrator: the install is per-machine and requires admin privileges. The UI will, of course, prompt for that with UAC.
Please, let me know if something isn't clear
Kind regards,
Richard Markievicz
Hello
You can use msiexec for that.
It can be as simple as `msiexec /i RemoteDesktopManager.2025.1.25.0.msi` (or providing the full path to the MSI if the current directory doesn't contain the installer).
You might append `/quiet` if this is being scripted to suppress the interface; otherwise it will block on the installer UI. Note that if you're not running interactively, you must be administrator: the install is per-machine and requires admin privileges. The UI will, of course, prompt for that with UAC.
Please, let me know if something isn't clear
Kind regards,
Thanks that did the trick.