Click here to Skip to main content
15,888,325 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
what is .Net Framework Redistributable Package
how to use ?
i have created a .exe file in .net framework 2012.this .exe file is running on my machine very well.
but now i want to run same exe on my others machines.so it is possible to install .net framework and sql server2012 each and every machine for use that exe file.
or is there any why to run my exe file without installing .net framework.
when i was searching answer about it so i found something about the.Net Framework Redistributable Package
please tell me how i can solve my problem in simplist way ?

What I have tried:

i have installed complete .net framework on each and every machine . but now my machine is getting slow
Posted
Updated 14-Mar-16 12:03pm

Two types of redistributable installations for framework 4.5 are available:

1. Web installer (requires internet connection)
2. Offline installer

These can be found on: Installing the .NET Framework[^]

I would not recommend using the offline installer however, the web installer seems to do a better job to install missing parts.

In the past when running a .NET framework application it would automatically check for the presence of the .NET framework and show a dialog offering to download it if not found, sadly this functionality seems to be gone in recent versions (at least in my opinion, correct me if I'm wrong).
 
Share this answer
 
You MUST install the .NET Framework version your application is written against.

If your machine has slowed down, it's not because of the .NET Framework. It doesn't really do anything at all unless a .NET app is running.

The Redistributable is the only thing you need, unless your app is using something like SQL Server. Then you're going to have to install anything else your app needs to run.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900