I need to allow my client's to run the setup.exe when they would like to upgrade after this next role. We have updated the code from .NET Framework 2.0 to 4.0. I understand that the client could simply go our website and download the application from the in order to upgrade the existing as well as get the setup.exe which will check for pre-requisistes. But, I have been asked to make it so that when they choose to update from the client itself, it runs the bootstrapper first. I understand that ClickOnce does not directly support this. I am already handling the update checking/instaling programmatically by using the System.Deployement.Application namespace. Is it possible that I can just include the setup.exe in the application itself, and then run that file when user chooses to download? Maybe I can just pull the setup.exe directly from the install location when the user wants to upgrade? Has anyone accomplished this before?
Thanks