如何在 Windows 7 上安装 VS6、SP5 和 Proc Pack?
需要在 Windows 7(32 位)上安装 Visual Studio 6 Processor Pack。
首先我安装了VS6 + SP6,这导致PP无法安装。我卸载了 VS6 并重新安装了 VS6,并尝试安装 SP5。
现在抱怨需要先安装 MDAC 2.5 或 2.6。我尝试过 2.5、2.6 和 2.8。所有操作都会通过小提取进度对话框运行并似乎已完成。但 SP5 仍然失败:
有关正确安装 VS6 + SP5 + PP 的任何想法吗?
编辑: 或者,有什么方法可以正确安装 VS6(或只是 VC6)+ SP6 + PP? Processor Pack 拒绝安装在 SP6 上,坚持安装 SP5。
编辑:我发现了一篇建议更改注册表的知识库文章,并且安装了 SP6 + PP,但我收到此错误,这显然表明未安装 PP:
--------------------Configuration: test - Win32 Debug--------------------
Compiling...
test.cpp
c:\svn\test\test.cpp(127) : error C2520: conversion from unsigned __int64
to double not implemented, use signed __int64
Error executing cl.exe.
test.dll - 1 error(s), 0 warning(s)
编辑:固定标题。
Need to get Visual Studio 6 Processor Pack installed on Windows 7 (32 bit).
First i installed VS6 + SP6, which prevents the PP from installing. I uninstalled VS6 and re-installed VS6 and am trying to install SP5.
It is now complaining that MDAC 2.5 or 2.6 needs to be installed first. I've tried 2.5, 2.6, and 2.8. All run through the little extract progress dialog and appear to finish. But SP5 still fails with this:
Any ideas on getting VS6 + SP5 + PP installed correctly?
EDIT: Alternatively, any way to get VS6 (or just VC6) + SP6 + PP installed correctly? Processor Pack refuses to install on SP6, insisting on SP5.
EDIT: I found a KB article suggesting a registry change, and that got SP6 + PP installed, but i'm getting this error, which is apparently indicates that PP isn't installed:
--------------------Configuration: test - Win32 Debug--------------------
Compiling...
test.cpp
c:\svn\test\test.cpp(127) : error C2520: conversion from unsigned __int64
to double not implemented, use signed __int64
Error executing cl.exe.
test.dll - 1 error(s), 0 warning(s)
EDIT: Fixed title.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
虽然这不受支持,并且您会收到有关可能无法在 Windows 7 上运行的正常警告,但我现在已经安装并编译了它。
找到了解决方案 对此,实际上效果很好。本质上,您必须手动编辑 VS6 Service Pack 5 的 STF 文件才能跳过 MDAC 检查。
安装 VS6。进行自定义安装并取消选择 Visual Studio Analyzer 以及您不需要的任何其他内容。我最终安装了 InterDev 和 VC++ 以及一些杂项。工具。 (OLE 查看器导致问题。)
将 Service Pack 5 文件提取(或从 CD 复制)到文件夹。
修改 SP598ENT.STF 以从步骤 13 中的列表中删除 36(MDAC 检查)
运行 SETUPSP5.EXE 并让 Service Pack 5 完成安装。
Though this isn't supported and you get the normal warnings about maybe not working on Windows 7, but i now have it installed and compiling.
Found a solution to this that actually works well. Essentially you have to hand edit the STF file for VS6 Service Pack 5 to skip the MDAC check.
Install VS6. Do a custom install and deselect Visual Studio Analyzer, along with anything else you don't need. I ended up installing InterDev and VC++ with some misc. tools. (OLE Viewer caused problems.)
Extract (or copy from CD) Service Pack 5 files to a folder.
Modify SP598ENT.STF to remove 36 (the MDAC check) from the list in step 13
and save the file. For completeness, you can possibly remove step 36 (and 37) entirely, but this has worked for me once but not the second time i tried this. Those lines are as follows:
Run SETUPSP5.EXE and let Service Pack 5 finish installing.
MDAC 据称是 Windows 7 操作系统的一部分 - 请参阅 Microsoft 版主的输入 此处。您可能不走运,因为 Visual Studio v6 不再是受支持的产品 - 它在 Win7 发布 iirc 之前就已过期。
MDAC is supposedly part of the OS in Windows 7 - see input from Microsoft moderator here. You may be out of luck, since Visual Studio v6 is no longer a supported product - it expired before Win7 shipped iirc.
在一些旧的 XP 机器上,您可以根据需要制作有关 MDACxxx(或任何 dll、tlb)的 DLL 包装器。
在 XP 上进行安装(确保原始 DLL 的路径在 AppPath 中而不是 WinSysPath 中)并在 Win7 上安装,最后将您的 DLL 包含在安装过程中。
On the some old XP machine you may make DLL wrapper about MDACxxx (or any dll, tlb) who you want.
Make installation on the XP (make sure that path of orginal DLL to be in AppPath not WinSysPath) and install on your Win7 and at the end include your DLL in your install procedure.