从批处理文件运行程序时如何正确加载 32 位 DLL 依赖项
我编写了一个引用 Microsoft.TeamFoundation.VersionControl.Client.dll 的工具,它是一个 32 位 DLL。
当我在 64 位 Windows 上构建工具时,我将 Visual Studio 设置为专门针对 X86,以强制其构建为 32 位。
只要我直接调用该工具(例如,通过在命令行上键入“myTool.exe”),以 X86 而不是全 CPU 为目标就可以防止出现 BadImageFormatException。。但是,如果我运行调用该工具的批处理文件,我仍然会遇到异常。即使批处理文件在 32 位命令提示符 (%WINDIR%\SysWOW64\cmd.exe) 中运行,也会发生这种情况。
我还能做些什么来完成这项工作?
I have written a tool that references Microsoft.TeamFoundation.VersionControl.Client.dll, which is a 32-bit DLL.
When I build my tool on 64-bit Windows, I set Visual Studio to specifically target X86 in order to force it to a 32-bit build.
Targetting X86 instead of All-CPU's prevents me from getting a BadImageFormatException, as long as I invoke the tool directly (e.g. by typing "myTool.exe" on the command line). However, if I run a batch file that invokes the tool, I still get the exception. This happens even if the batch file runs in a 32-bit command prompt (%WINDIR%\SysWOW64\cmd.exe).
What else can I do to make this work?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
由于您正在运行命令行的是 64 位计算机,因此它是 64 位的。以下是打开和运行 32 位命令行的方法:
http://www.tipandtrick.net/2008/how-to-open-and-run-32-bit-command-prompt-in-64 -bit-x64-windows/
我也会检查这些:
http://www.devnewsgroups.net/group/microsoft.public.dotnet.framework/topic46570.aspx
和
http://filips.net/archives /2008/01/17/64 位 Windows 中出现错误图像格式异常/
Since it is a 64-bit machine you are running the command line on, it is in 64-bit. Here is how you open and run a 32-bit command line:
http://www.tipandtrick.net/2008/how-to-open-and-run-32-bit-command-prompt-in-64-bit-x64-windows/
I would check these too:
http://www.devnewsgroups.net/group/microsoft.public.dotnet.framework/topic46570.aspx
and
http://filips.net/archives/2008/01/17/getting-badimageformatexception-in-64-bit-windows/