Converting an MSIL exe file to a native exe file?

A

avivgur

Is there any way to convert an MSIL exe file (the kind created by
visual studio .net) to an exe file that will run on microsoft windows
computers without the net framework?
Thanks,
Aviv.
 
T

Thomas Scheidegger [MVP]

Is there any way to convert an MSIL exe file (the kind created by
visual studio .net) to an exe file that will run on microsoft windows
computers without the net framework?


no, 'by design'.
Managed code does need a Framework to run.
MSIL provides 'verifiable' code with type-safety
and helps to protect against leaks and attacks.
 
G

Guest

There is a program that will do what you are looking for (can't remember the
name or company) BUT I strongly advise against using it. If you later install
a newer version of the framework or a service pack that fixes a vulnerability
it will not be applied to your program.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

MSIL to Machine Langague Code 6
more about MSIL code 2
Future of Native Apps? 14
MSIL to machine level instructions 6
Deploying native code. 1
.exe file with C# 9
hiding exe file as image 10
Runtime version 1

Top