如何检索 vspackage 安装的 devenv.exe 路径?
我正在遵循本教程 http://msdn.microsoft.com/en-us/library/bb458038。 aspx 创建 VsPackage 安装程序。在创建安装程序类的部分中,会出现对注册表“SOFTWARE\Microsoft\VisualStudio\9.0\Setup\VS\EnvironmentPath”中此位置的引用,其中表示包含 devenv.exe 位置。我浏览了注册表,发现该位置不存在。 devenv.exe 路径的正确位置是什么?我正在使用 Visual Studio 2008
I'm following this tutorial http://msdn.microsoft.com/en-us/library/bb458038.aspx to create a VsPackage Setup. In the part of the creation of an installer class appears a reference to this location in the registry "SOFTWARE\Microsoft\VisualStudio\9.0\Setup\VS\EnvironmentPath" where it says that contains the devenv.exe location. I explore the registry and that location doesn't exist.
What is the correct location of the devenv.exe path? I'm using Visual Studio 2008
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我正在分享我的代码。它对我有用。
I'm sharing my code. It’s working for me.
您需要在 32 位计算机上访问
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\VisualStudio\9.0\Setup\VS\EnvironmentPath
和HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\VisualStudio\9.0\Setup\VS\EnvironmentPath
在 64 位机器上。如果您编写一个读取
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\VisualStudio\9.0\Setup\VS\EnvironmentPath
的 32 位程序,您将被 Windows 自动重定向到 64 位计算机上的Wow6432Node
。You need to access
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\VisualStudio\9.0\Setup\VS\EnvironmentPath
on 32bit machines andHKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\VisualStudio\9.0\Setup\VS\EnvironmentPath
on 64bit machines.If you write a 32bit program that reads the
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\VisualStudio\9.0\Setup\VS\EnvironmentPath
you will be automatically redirected toWow6432Node
on 64bit machines by Windows.