如何检查机器上安装的MS Office版本

发布于 2024-07-21 13:46:06 字数 110 浏览 4 评论 0原文

我正在开发一个控制台应用程序,它对注册表执行一些操作。 我没有使用任何 Office 互操作程序集,但我需要了解 Office 版本。 如何使用 C# 确定计算机上安装了哪个版本的 MS Office。

I am working on a console app which perform some operation on registry. I am not using any interop assembly for office but i need to to know office version. How to determine which version of MS office is installed on the machine using C#.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

韶华倾负 2024-07-28 13:46:06

搜索(使用 Registry 类)

HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\应用程序路径

HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\应用程序路径

版本号为

  • 7.0 -97
  • 8.0 - 98
  • 9.0 -2000
  • 10.0 -2002
  • 11.0 -2003
  • 12.0 -2007
  • 14.0 -2010

这是 ac# 实现

Search in (using the Registry class)

HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\App Paths

or

HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\App Paths

Version numbers are

  • 7.0 -97
  • 8.0 - 98
  • 9.0 -2000
  • 10.0 -2002
  • 11.0 -2003
  • 12.0 -2007
  • 14.0 -2010

Here is a c# implementation

云胡 2024-07-28 13:46:06

我有同样的要求,但我还必须弄清楚安装的office是32位还是64位。 我在这里记录了我的解决方案:

http:// cyrilbeschi.blogspot.com/2014/03/how-to-find-microsoft-office-version.html

I had the same requirement, but I also have to find out whether office installed is 32-bit or 64-bit. I have documented my solution here:

http://cyrilbeschi.blogspot.com/2014/03/how-to-find-microsoft-office-version.html

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文