distributing .net framework

  • Thread starter Thread starter Brent Burkart
  • Start date Start date
B

Brent Burkart

Has anyone had the situation where they want to deploy an applicaiton
companywide, but the .NET framework is required for the application to work.
How did you address this situation? Is there some way to package the .NET
framework in with your application to be downloaded from a website?

All ideas and suggestions are welcome.

Thanks,
Brent
 
* "Brent Burkart said:
Has anyone had the situation where they want to deploy an applicaiton
companywide, but the .NET framework is required for the application to work.
How did you address this situation? Is there some way to package the .NET
framework in with your application to be downloaded from a website?

Why not create a setup package including the Framework?

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

Plug-In:

<URL:http://groups.google.com/[email protected]>
<URL:http://workspaces.gotdotnet.com/vsboot>

Download
<URL:http://www.gotdotnet.com/community/...f0a23-f529-4158-8e0a-d187d16f41f1&newsId=1981>

Framework 1.1:

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

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

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

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

Framework 1.0:

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

Using Visual Studio .NET to Redistribute the .NET Framework
<URL:http://msdn.microsoft.com/library/en-us/dnnetdep/html/vsredistdeploy.asp>
 
What I done in my company is set up a Active Directory Group Policy that deploys the .Net framework to every machine in the company. This makes it real easy to manage and ensures that everyone is running the same framework version

There is 2 catches to this though
1) You have to install it via MSI packag
2) Your Network Admin has to sign off on it :-

While I can't help with the second one the first one I can help with. The DOTNETFX.exe install file contains the MSI, you just have to extract it. To extract the MSI you just need to run the following command line in the directory where you have the framework install

dotnetfx /C /T:C:\netframewor
Now if you look at the netframework directory on C you will find a MSI install for the framework

Hope this help

Daniel Clausen MCSD
 
Back
Top