I have already created a function for checking if the .NET Framework is installed (attached). If neither version is installed, I would like the installer to create a read-only section with ".NET Framework". On the finish page, it would be nice if I could get a checked/read-only box with "Install .NET Framework Now" which runs the setup program after it has been unpacked and the have it run silently with:
ExecWait('".NET Framework 1.1 Redistributable Final Beta.exe" dotnetfx.exe /q:a /c:"install /l /q"'
If the .NET Framework is detected, I would like nothing to be done. (No setup program extracted, nothing installed but the main program.)
Is this feasible?