Reputation: 1549
I want to build a package (installer) which involve .NET framework (3.5 or later). With this installer, installing .NET framework is transparent with user. Please help me!
Upvotes: 2
Views: 292
Reputation: 458
The solution will depend on the installer tool you are using. If you are manually checking if .NET 3.5 is already installed (HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\NET Framework Setup\NDP\v3.5\Install == 1) and launch the dotNetFx35setup.exe if needed, simply using the the parameter "/q" (or "/quiet") should prevent it from displaying a user interface during the installation. You can find lots of examples how to do this with Inno Setup.
Upvotes: 1