exporting exe to work another computer

ok trying to send a console application .exe to friend to get their opinion on a small program but they can't run it. they are on a winXP pc like me how can I export an exe file to work on someone else's pc

-mike



Answer this question

exporting exe to work another computer

  • mkrayirath

    If you're using .NET, they need the .NET framework. If you use C functions, you need the msvcrt dlls. If you use MFC, you need the MFC dlls. As you've posted in the Express Edition area, I assume you're not using MFC ( as you can't ), but you're probably using the .NET framework. Which means anyone who wants to run your code needs to install .NET 2.0 first.



  • Luc123

  • Alejandro-Ramirez

    If you are programming in plain C/C++, you don't need .NET runtime. I just succeeded deploying a small console program copying msvcr80.dll and its manifest file Microsoft.VC80.CRT.manifest.

    Paolo

  • Morad

    okieo, seems like a bit much for a console application


  • exporting exe to work another computer