.NET Framework Setup
I thought about doing it that way but was not sure if you could call installutil /u programatically. Anyone know if you can Also I haven't started looking at how this will work with Vista, but I will have to support it.
well, if you cannot do it programatically, you can have a batch file that contains the correct commands. then, the 'upgrade.exe' application you make, can invoke the batch file
the batch file will need to stop, uninstall/override any dll's, and restart the service
if you want to do this ALL in the service, then yes, im thinking the only thing you can update are dll's... and if anything looks like you will need to somehow 'unload' them from memory first... im thinking the first option may be do-able...
You can just stop the service programmatically and then replace the service binary (exe)..
Cheers,
Suresh
sthotakura wrote:
You can just stop the service programmatically and then replace the service binary (exe)..
Cheers,
Suresh