Reputation: 15715
I would like to use Inno Setup instead of ClickOnce to create my app installer, but I need to know how can I programmatically download and install .net framework 4.0 (if required) and the Microsoft.Jet.OLEDB.4.0 data provider (if required), the same way ClickOnce would do. This Inno Setup let me run exe's when installing so I would create a different app to download all the required stuff and run it at installation time. Any advice?
Upvotes: 2
Views: 2333
Reputation: 176169
This CodeProject article describes how to do it for earlier versions of the .NET Framework:
The script for .NET 4.0 should be very similar.
Upvotes: 2