XML | HTML | TXT
您当前位置:软件开发 >> 新闻动态 >> 软件开发技术 >> 浏览文章

c#修改默认浏览器

 *修改默认浏览器

 

             */  

            //浏览器路径  

            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 E-Mail:1069706080@qq.com
地址:山东省济南市舜耕路泉城公园东门园内向北50米 鲁ICP备07011972号 版权所有2008-2013 山东赢德信息科技有限公司