Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Install the .Net framework with my application with Inno setup

Tags:

inno-setup

Any one have an idea of how to install .NET framework before the setup in INNO Script?

like image 704
6 revs, 4 users 65% Avatar asked Feb 11 '26 07:02

6 revs, 4 users 65%


2 Answers

here is a complete solution for all .Net versions and additional software: CodeProject

p.s. I know this question is rather old, but this project should be part of the answers...

[EDIT by @jitbit]: The latest source for the CodeProject article can be found here: https://github.com/stfx/innodependencyinstaller

like image 163
torno Avatar answered Feb 16 '26 22:02

torno


You can use a [Run] section to launch an executable. The redistributable .NET installer is an executable. For example, you can download the installer for .NET 2.0 here.

See also the Inno Setup documentation.

like image 28
Wim Coenen Avatar answered Feb 17 '26 00:02

Wim Coenen