I have an MSI which installs a windows service. I want the service to receive a message and be able to update itself. I have tried spinning off a new process which runs another assembly which in turns runs MSIEXEC with the /Uninstall flag and then installs a new MSI.
The issue here is that it appears to do nothing.. I have had a look at it appears to be an Admin privileges issue. I added a verb of 'runas' to enforce Admin rights: the MSI now runs but requires user interaction (which I don't want) to conform to UAC. Is it even possible to have this process fully automated or not?
Thanks.