Link to home
Start Free TrialLog in
Avatar of mpdillon
mpdillon

asked on

Setup.exe vs Publish.htm

I have always used the Setup.exe when Installing a vb.net project that I had created. However when I published the most recent application I wrote, I did not find a Setup.exe in the deployment folder. Instead, I found a publish.htm. Publish.htm comes with a whole new set of problems. I do not know exactly what setting to change in IE to avoid the "Your Web browser settings do not allow you to run unsigned applications." error. I would like to have my project create a setup.exe rather than the publish.htm.
How would I force the project to create a Setup.exe?
thanks,
pat
Avatar of Gagan_Jaura
Gagan_Jaura

Usually when you deploy a project, it creates both publish.htm and setup.exe file. Moreover you can open publish.htm, it will display links. You can install the exe of the project from one of those links. Go through below link, it will give you a fair idea
http://www.15seconds.com/issue/041229.htm
Avatar of mpdillon

ASKER

Gagan_Juara,
Thank you for the article but it did not mention how to create the setup.exe. The Setup.exe is missing when I choose Publish. My client tries to use the Publish.htm to install the application but the IE security setting prevent the install from occurring. I do not know enough about the security settings in IE to know exactly which ones to turn on or off.
Thus I need to generate a setup.exe. I may have found a solution or this may be just coincidence. I changed the mode from DEBUG to RELEASE. The next time I published the project, the Setup.exe appeared.
Any thoughts?
ASKER CERTIFIED SOLUTION
Avatar of Gagan_Jaura
Gagan_Jaura

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
It is always the basic stuff that I trip on. Thank you.