程序完成如何在其他电脑上使用它?
Program done how can I use it on other PCs?
我刚刚在 visual studio (VS) 中完成了我的 c 程序的编码,我所做的只是将编译后的 .exe 文件从文件夹中拖到 运行 在其他计算机上,除了在其他计算机上,我想我需要 VS,因为它说缺少来自 VS 的 MSVCR110D.dll。那么我如何才能 运行 我的程序在其他没有 VS 的计算机上呢?
你可以使用IExpress which is used for distributing self-contained installation packages. It is there in every windows machine preinstalled. Using this utility you can make the executable .exe
which will be incorporated with dependent dll
s. You can see Step by step guide,看看如何使用它。
按照以下步骤操作
https://msdn.microsoft.com/en-us/library/3w7axy17.aspx
在你的输出中 window 它会告诉你在哪里可以找到 exe 文件,通常是 "ProjectName/Debug/Release/"
如果您添加了任何外部库,则必须使用 exe 复制该文件夹中的任何 DLL 文件(如果需要,您可以将它们与某些应用程序结合使用)
您还必须确保在尝试 运行 您的程序
的 PC 上安装了正确版本的 .NET Framework
我刚刚在 visual studio (VS) 中完成了我的 c 程序的编码,我所做的只是将编译后的 .exe 文件从文件夹中拖到 运行 在其他计算机上,除了在其他计算机上,我想我需要 VS,因为它说缺少来自 VS 的 MSVCR110D.dll。那么我如何才能 运行 我的程序在其他没有 VS 的计算机上呢?
你可以使用IExpress which is used for distributing self-contained installation packages. It is there in every windows machine preinstalled. Using this utility you can make the executable .exe
which will be incorporated with dependent dll
s. You can see Step by step guide,看看如何使用它。
按照以下步骤操作
https://msdn.microsoft.com/en-us/library/3w7axy17.aspx
在你的输出中 window 它会告诉你在哪里可以找到 exe 文件,通常是 "ProjectName/Debug/Release/"
如果您添加了任何外部库,则必须使用 exe 复制该文件夹中的任何 DLL 文件(如果需要,您可以将它们与某些应用程序结合使用)
您还必须确保在尝试 运行 您的程序
的 PC 上安装了正确版本的 .NET Framework