C# 中获取系统安装的MS Offfice信息(是否安装、版本、安装路径)

using System;
using System.Collections.Generic;
using System.Text;

namespace WpsTest
{

    public class OfficeOperator
    {
        #region 方法

        #region public static
        /// <summary>
        /// 检测MS-Office是否正确安装
        /// 通过注册表检测
        /// </summary>
        /// <param name="version">获得安装的版本号,如office2000,office2003,office2007</param>
        /// <returns></returns>
        public static bool IsInstall(out string Version)
        {
            bool result = false;
            string officePath = "";
            string officeVersion = "";
            
            Version = "";
            GetOfficePath(out officePath, out officeVersion);

            if (!string.IsNullOrEmpty(officeVersion) && !string.IsNullOrEmpty(officePath))
            {
                result = true;
                Version = officeVersion;
            }

            return result;
        }

        /// <summary>
        /// 获取当前某个版本Office的安装路径
        /// </summary>
        /// <param name="Path">返回当前系统Office安装路径</param>
        /// <param name="Version">返回当前系统Office版本信息</param>
        public static void GetOfficePath(out string Path,out string Version)
        {
            string strPathResult = "";
            string strVersionResult = "";
            string strKeyName = "Path";
            object objResult = null;
            Microsoft.Win32.RegistryValueKind regValueKind;
            Microsoft.Win32.RegistryKey regKey = null;
            Microsoft.Win32.RegistryKey regSubKey = null;

            try
            {
                regKey = Microsoft.Win32.Registry.LocalMachine;

                if (regSubKey == null)
                {//office97
                    regSubKey = regKey.OpenSubKey(@"SOFTWARE\Microsoft\Office\8.0\Common\InstallRoot", false);
                    strVersionResult = "office97";
                    strKeyName = "OfficeBin";
                }

                if (regSubKey == null)
                {//Office2000
                    regSubKey = regKey.OpenSubKey(@"SOFTWARE\Microsoft\Office\9.0\Common\InstallRoot", false);
                    strVersionResult = "office2000";
                    strKeyName = "Path";
                }

                if (regSubKey == null)
                {//officeXp
                    regSubKey = regKey.OpenSubKey(@"SOFTWARE\Microsoft\Office\10.0\Common\InstallRoot", false);
                    strVersionResult = "officeXP";
                    strKeyName = "Path";
                }

                if (regSubKey == null)
                {//Office2003
                    regSubKey = regKey.OpenSubKey(@"SOFTWARE\Microsoft\Office\11.0\Common\InstallRoot", false);
                    strVersionResult = "office2003";
                    strKeyName = "Path";
                }

                if (regSubKey == null)
                {//office2007 
                    regSubKey = regKey.OpenSubKey(@"SOFTWARE\Microsoft\Office\12.0\Common\InstallRoot", false);
                    strVersionResult = "office2007";
                    strKeyName = "Path";
                }

                objResult = regSubKey.GetValue(strKeyName);
                regValueKind = regSubKey.GetValueKind(strKeyName);
                if (regValueKind == Microsoft.Win32.RegistryValueKind.String)
                {
                    strPathResult = objResult.ToString();
                }
            }
            catch (System.Security.SecurityException ex)
            {
                throw new System.Security.SecurityException("您没有读取注册表的权限", ex);
            }
            catch (Exception ex)
            {
                throw new Exception("读取注册表出错!", ex);
            }
            finally
            {

                if (regKey != null)
                {
                    regKey.Close();
                    regKey = null;
                }

                if (regSubKey != null)
                {
                    regSubKey.Close();
                    regSubKey = null;
                }
            }

            Path = strPathResult;
            Version = strVersionResult;
        }
        #endregion public static

        #endregion 方法
    }
}

以下是使用

        private void btnGetOfficePath_Click(object sender, EventArgs e)
        {
            string officePath = "";
            string officeVersion = "";
            try
            {
                OfficeOperator.GetOfficePath(out officePath,out officeVersion);
            }
            catch (Exception ex)
            {
                MessageBox.Show("无法获取系统Office信息");
            }
            if (!string.IsNullOrEmpty(officePath) && !string.IsNullOrEmpty(officeVersion))
            {
                MessageBox.Show(string.Format("版本:{0}\r\n安装路径:{1}",officeVersion,officePath));
            }
        }

        //是否安装及版本
        private void btnIsInstall_Click(object sender, EventArgs e)
        {
            try
            {
                string version = "";
                if (OfficeOperator.IsInstall(out version))
                {
                    MessageBox.Show(string.Format("当前安装了{0}", version));
                }
                else
                {
                    MessageBox.Show("您当前还没有安装微软Office系列软件");
                }
            }
            catch(Exception ex)
            {
                MessageBox.Show("无法获取系统Office信息");
            }
        }

posted on   荣锋亮  阅读(719)  评论(0编辑  收藏  举报

编辑推荐:
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
· 浏览器原生「磁吸」效果!Anchor Positioning 锚点定位神器解析
· 没有源码,如何修改代码逻辑?
阅读排行:
· 全程不用写代码,我用AI程序员写了一个飞机大战
· DeepSeek 开源周回顾「GitHub 热点速览」
· 记一次.NET内存居高不下排查解决与启示
· MongoDB 8.0这个新功能碉堡了,比商业数据库还牛
· .NET10 - 预览版1新功能体验(一)

导航

< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5
点击右上角即可分享
微信分享提示