您身边的软件定制专家--9年开发经验为您护航

18678812288
0531-88887250

c#修改默认浏览器

文章作者:济南软件开发 时间:2016年12月20日

 *修改默认浏览器

 

             */  

            //浏览器路径  

            string exePath = @"F:\firefox\firefox.exe";  

            //注册表项  

            string reg = @"http\shell\open\command";  

            string nameReg = @"http\shell\open\ddeexec\Application";  

  

            RegistryKey key = null;  

            try  

            {  

                key = Registry.ClassesRoot.OpenSubKey(reg, true);  

                if (key != null)  

                {  

                    key.SetValue("", string.Format("\"{0}\" -- \"%1\"", exePath));  

                    key.Close();  

  

                    key = Registry.ClassesRoot.OpenSubKey(nameReg, true);  

                    if (key != null)  

                    {  

                        key.SetValue("", Path.GetFileNameWithoutExtension(exePath));  

                        key.Close();  

                    }  

                }  

            }  

            catch (Exception)  

            {  

                key.Close();  

            }  

 


想要了解更多详情欢迎来电咨询18678812288
登陆网址:www.jnydkj.cn。
联系人:王经理。