码迷,mamicode.com
首页 > 其他好文 > 详细

C# 获取程序安装目录

时间:2014-08-13 21:52:47      阅读:1027      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   os   io   文件   for   

在网页启动本地程序需要将命令写入注册表,在网页调用命令即可。

 首先将注册信息创建一个注册表文件 .reg 格式,以页面启动 notepad++ 程序为例 
bubuko.com,布布扣
Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\Webshell]
[HKEY_CLASSES_ROOT\Webshell\DefaultIcon]
[HKEY_CLASSES_ROOT\Webshell\shell]
[HKEY_CLASSES_ROOT\Webshell\shell\open]
[HKEY_CLASSES_ROOT\Webshell\shell\open\command]
@="\"C:\\Program Files (x86)\\Notepad++\\notepad++.exe\" \"%1\""

 

在页面调用HTML代码,会有一个外部请求的提示,直接启动应用即可。
<a href=‘Webshell://‘>WebShell启动本地程序</a>    
bubuko.com,布布扣
 
 
--------------------------------------分割线-----------------------------------------
 
在项目中,注册脚本不会让用户自己注册,那就需要将注册信息在程序中执行,用C#代码实现。
 
    private static void Main(string[] args)
        {
       var notepadPath = @"C:\Program Files (x86)\Notepad++\notepad++.exe";
           CreateRegistryKey("Webshell", notepadPath);               
        }
        public static void CreateRegistryKey(string shell, string path)
        {
            RegistryKey key = Registry.ClassesRoot;
            key.CreateSubKey(shell);
            key.CreateSubKey(string.Format(@"{0}\DefaultIcon", shell));
            key.CreateSubKey(string.Format(@"{0}\shell", shell));
            key.CreateSubKey(string.Format(@"{0}\shell\open", shell));
            var command = key.CreateSubKey(string.Format(@"{0}\shell\open\command", shell));
            command.SetValue("", path);
            key.Close();
        }

 在真实的用户环境下,是不能确定某个程序安装在了哪里,所以程序的安装目录不能用固定的。

 百度一下,找到一个方法。 有的程序是可以找到,但有些程序就找不到了。不知道为什么?

        /// <summary>
        /// 获取单个程序的执行目录
        /// </summary>
        /// <param name="processName"></param>
        /// <returns></returns>
        public static string GetPath(string processName)
        {
            var process = Process.GetProcessesByName(processName);

            var path = string.Empty;//程序路径
            foreach (var p in process.Where(p => p.MainWindowHandle != IntPtr.Zero))
            {
                path = p.MainModule.FileName;
                break;
            }
            return path;
        }
        private static void Main(string[] args)
        {
         var notepadPath = GetPath("Notepad++"); Console.WriteLine(" 程序名称:Notepad++ \n 安装目录:" + notepadPath);      CreateRegistryKey("Webshell", notepadPath); }

 又百度一下,找到获取所有程序的安装目录方法,只是获取的安装路径,不是完整可用路径。

        /// <summary>
        /// 获取所有程序的安装目录
        /// </summary>
        public static void GetAllProcess()
        {
            const string Uninstall = @"SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall";
            using (var registryKey = Registry.LocalMachine.OpenSubKey(Uninstall, false))
            {
                if (registryKey != null)//判断对象存在
                {
                    foreach (var keyName in registryKey.GetSubKeyNames())//遍历子项名称的字符串数组
                    {
                        using (var key = registryKey.OpenSubKey(keyName, false))//遍历子项节点
                        {
                            if (key != null)
                            {
                                var softwareName = key.GetValue("DisplayName", "").ToString();//获取软件名
                                var installLocation = key.GetValue("InstallLocation", "").ToString();//获取安装路径

                                if (!string.IsNullOrEmpty(installLocation))
                                {
                                    Console.WriteLine(softwareName);
                                    Console.WriteLine(installLocation);
                                    Console.WriteLine();
                                }
                            }
                        }
                    }
                }
            }
        }

bubuko.com,布布扣

 

最后,我是向大家请教问题的:怎么获取某个应用程序的安装路径,只通过程序名找?

 

 
 

C# 获取程序安装目录,布布扣,bubuko.com

C# 获取程序安装目录

标签:style   blog   http   color   os   io   文件   for   

原文地址:http://www.cnblogs.com/liany/p/3910725.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!