Installer - how to configure setup project to automatically install the .NET runtime?

  • Thread starter Thread starter Robin Tucker
  • Start date Start date
R

Robin Tucker

Hiya,


Just a quick question for you - if I create a Setup project for my VB.NET
application, is it possible to configure the setup project to automatically
install the .NET runtime if it isn't present on the target machine? I don't
want to have to "launch" another installer from within my application
installer - I'd rather they were "integrated" into a single installation.

Any ideas?


Cheers

Rob
 
Hi Robin,

This is not possible and I suppose is even prohibited by Microsoft. You
should launch the .NET Framework installation as a separate installation.
 
* "Robin Tucker said:
Just a quick question for you - if I create a Setup project for my VB.NET
application, is it possible to configure the setup project to automatically
install the .NET runtime if it isn't present on the target machine? I don't
want to have to "launch" another installer from within my application
installer - I'd rather they were "integrated" into a single installation.

Framework 1.0:

..NET Framework Deployment Guide
<http://msdn.microsoft.com/library/en-us/dnnetdep/html/dotnetframedepguid.asp>

Using Visual Studio .NET to Redistribute the .NET Framework
<http://msdn.microsoft.com/library/en-us/dnnetdep/html/vsredistdeploy.asp>

Framework 1.1:

Redistributing the .NET Framework 1.1
<http://msdn.microsoft.com/library/en-us/dnnetdep/html/redistdeploy1_1.asp>

..NET Framework 1.1 Deployment Guide
<http://msdn.microsoft.com/library/en-us/dnnetdep/html/dotnetframedepguid1_1.asp>

..NET Framework 1.1 Redistributable Prerequisites
<http://msdn.microsoft.com/library/en-us/dnnetdep/html/NETFx1Redistreq1_1.asp>

..NET Framework Redistributable Package 1.1 Technical Reference
<http://msdn.microsoft.com/library/en-us/dnnetdep/html/dotnetfxref1_1.asp>

Using Visual Studio .NET 2003 to Redistribute the .NET Framework
<http://msdn.microsoft.com/library/en-us/dnnetdep/html/vsredistdeploy1_1.asp>
 
Back
Top