When I try to update the windows agent via the powershell command line described here:
$ProgressPreference = ‘SilentlyContinue’; Invoke-WebRequest https://github.com/netdata/netdata/releases/latest/download/netdata-x64.msi -OutFile “netdata-x64.msi”; msiexec /qn /i netdata-x64.msi TOKEN=YYYYYY ROOMS=XXXXX
via my software deployment tool
nothing happens, the agent does not get updated. The initial install however worked just fine.
When I login to the server console, open a powershell console and copy and paste the same powershell command, also nothing happens, it just executes and then finished.
When I open a command line, and just execute the msi file manually, the wizards hows up, I click next, next, next… I start the installation, and then this I get this popup error:
Netdata Agent Setup
The setup must update files or services that cannot be updated while the system is running. If you choose to continue, a reboot will be required to complete the setup.
OK Cancel
So does this really mean that I have to reboot all of my production servers in order to update netdata. How can I do this with my software deployment tool, so I don’t have to manually install the msi file everywhere