5

是否可以在 C# 应用程序中更改 Internet Explorer 的主页?其他浏览器(Firefox、Chrome)的解决方案也不错。

4

5 回答 5

11

好吧,对于 IE,您必须设置注册表项:

HKCU\Software\Microsoft\Internet Explorer\Main\Start Page

对于 firefox,您将需要编辑 js 文件:prefs.js. 这可以在以下位置找到:C:\Users\ [USERNAME]\AppData\Roaming\Mozilla\Firefox\Profiles\ [User Subfolder]

Chrome,将数据存储在: C:\Users\<username>\AppData\Local\Chromium\User Data\Default文件中的Preferences文件夹中。这是 JSON 格式。编辑它不应该是麻烦

于 2012-06-09T18:06:35.757 回答
4

Internet Explorer 的主页保存在(根据Start Page)的注册表项中,因此您可以使用(来自此示例)中的类进行设置:HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\MainRegistryMicrosoft.Win32

RegistryKey startPageKey = Registry.CurrentUser.OpenSubKey(@"Software\Microsoft\Internet Explorer\Main", true);
startPageKey.SetValue("Start Page", "http://stackoverflow.com");
startPageKey.Close();

其他的就不知道了,怕。

于 2012-06-09T18:07:09.453 回答
2

IE:编辑注册表项 HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main\Start Page

Firefox:在配置文件文件夹中找到设置(您需要解析文件)

Chrome:在首选项文件中找到默认的“主页”设置:C:\Users\%USERNAME%/AppData\AppData\Local\Google\Chrome\User Data\Default

对于注册表,请使用 .NET RegistryKey类。对于文件,您需要解析文件并修改它们。

于 2012-06-09T18:08:02.917 回答
2

是的你可以。主页存储在注册表中。只要您的 C# 程序有权修改注册表,您就应该能够将此条目更改为您想要的任何页面。

IE

[HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main]
“Start Page”=”http://www.yourwebsite.com/”

如何修改窗口注册表

如何使用 C# 设置默认浏览器主页 (IE)?

火狐

Firefox 不会将主页存储在注册表中,因为它在 $APPDATA\Mozilla\Firefox\Profiles[profile name] 下有不同的配置文件,您需要从中读取的文件是 prefs.js,并且行:user_pref("browser.startup 。主页”, .... );

要获取默认配置文件,您需要阅读 $APPDATA\Mozilla\Firefox\profiles.ini。您必须遍历每个 [Profile#] 直到 Default=1 并且您将获得来自 Path=... 的配置文件名称

如果你想让我把它放到一个函数中(听起来也是个好主意),或者如果你想实现它,那么请在 Wiki 上找到它。

-斯图

资源

来自专家交流的未经测试的代码

public static void SetMozilla(string strURL)
        {
            try
            {
                string strSystemUname = Environment.UserName.ToString().Trim();
                string systemDrive = Environment.ExpandEnvironmentVariables("%SystemDrive%");
                string strDirectory = "";
                string strPrefFolder = "";
                if (Directory.Exists(systemDrive + "\\Documents and Settings\\" + strSystemUname + "\\Application Data\\Mozilla\\Firefox\\Profiles"))
                {
                    strDirectory = systemDrive + "\\Documents and Settings\\" + strSystemUname + "\\Application Data\\Mozilla\\Firefox\\Profiles";
                }
                else if (Directory.Exists(systemDrive + "\\WINDOWS\\Application Data\\Mozilla\\Firefox\\Profiles"))
                {
                    strDirectory = systemDrive + "\\WINDOWS\\Application Data\\Mozilla\\Firefox\\Profiles";
                }
                if (strDirectory.Trim().Length != 0)
                {
                    System.IO.DirectoryInfo oDir = new DirectoryInfo(strDirectory);
                    //System.IO.DirectoryInfo[] oSubDir;
                    //oSubDir = oDir.GetDirectories(strDirectory);
                    foreach (DirectoryInfo oFolder in oDir.GetDirectories())
                    {
                        if (oFolder.FullName.IndexOf(".default") >= 0)
                        {
                            strPrefFolder = oFolder.FullName;
                            CreatePrefs(strURL, strPrefFolder);
                        }
                    }

                }
            }
            catch
            { }
        }
        private static void CreatePrefs(string strURL, string strFolder)
        {
            StringBuilder sbPrefs = new StringBuilder();
            sbPrefs.Append("# Mozilla User Preferences\n\r");
            sbPrefs.Append("/* Do not edit this file.\n\r*\n\r"); 
            sbPrefs.Append("* If you make changes to this file while the application is running,\n\r");
            sbPrefs.Append("* the changes will be overwritten when the application exits.,\n\r*\n\r"); 
            sbPrefs.Append("* To make a manual change to preferences, you can visit the URL about:config\n\r");
            sbPrefs.Append("* For more information, see http://www.mozilla.org/unix/customizing.html#prefs\n\r");
            sbPrefs.Append("*/\n\r");
            sbPrefs.Append("user_pref(\"app.update.lastUpdateTime.addon-background-update-timer\", 1188927425);\n\r");
            sbPrefs.Append("user_pref(\"app.update.lastUpdateTime.background-update-timer\", 1188927425);\n\r");
            sbPrefs.Append("user_pref(\"app.update.lastUpdateTime.blocklist-background-update-timer\", 1188927425);\n\r");
            sbPrefs.Append("user_pref(\"app.update.lastUpdateTime.search-engine-update-timer\", 1188927425);\n\r");
            sbPrefs.Append("user_pref(\"browser.anchor_color\", \"#0000FF\");\n\r");
            sbPrefs.Append("user_pref(\"browser.display.background_color\", \"#C0C0C0\");\n\r");
            sbPrefs.Append("user_pref(\"browser.display.use_system_colors\", true);\n\r");
            sbPrefs.Append("user_pref(\"browser.formfill.enable\", false);\n\r");
            sbPrefs.Append("user_pref(\"browser.history_expire_days\", 20);\n\r");
            sbPrefs.Append("user_pref(\"browser.shell.checkDefaultBrowser\", false);\n\r");
            sbPrefs.Append("user_pref(\"browser.startup.homepage\", \"" + strURL +"\");\n\r");
            sbPrefs.Append("user_pref(\"browser.startup.homepage_override.mstone\", \"rv:1.8.1.6\");\n\r");
            sbPrefs.Append("user_pref(\"browser.visited_color\", \"#800080\");\n\r");
            sbPrefs.Append("user_pref(\"extensions.lastAppVersion\", \"2.0.0.6\");\n\r");
            sbPrefs.Append("user_pref(\"intl.charsetmenu.browser.cache\", \"UTF-8, ISO-8859-1\");\n\r");
            sbPrefs.Append("user_pref(\"network.cookie.prefsMigrated\", true);\n\r");
            sbPrefs.Append("user_pref(\"security.warn_entering_secure\", false);\n\r");
            sbPrefs.Append("user_pref(\"security.warn_leaving_secure\", false);\n\r");
            sbPrefs.Append("user_pref(\"security.warn_submit_insecure\", false);\n\r");
            sbPrefs.Append("user_pref(\"security.warn_submit_insecure.show_once\", false);\n\r");
            sbPrefs.Append("user_pref(\"spellchecker.dictionary\", \"en-US\");\n\r");
            sbPrefs.Append("user_pref(\"urlclassifier.tableversion.goog-black-enchash\", \"1.32944\");\n\r");
            sbPrefs.Append("user_pref(\"urlclassifier.tableversion.goog-black-url\", \"1.14053\");\n\r");
            sbPrefs.Append("user_pref(\"urlclassifier.tableversion.goog-white-domain\", \"1.23\");\n\r");
            sbPrefs.Append("user_pref(\"urlclassifier.tableversion.goog-white-url\", \"1.371\");\n\r");
            StreamWriter writer = new StreamWriter(strFolder + "\\prefs.js");
            writer.Write(sbPrefs.ToString()); 
            writer.Close();
            writer.Dispose();
            GC.Collect();
        }

资源

铬合金

以编程方式访问 Google Chrome 主页或开始页面

其他来源

于 2012-06-09T18:06:15.817 回答
0

除了上述答案之外,如果存在组策略,您可能还需要检查以下内容: HKCU\Software\Policies\Microsoft\Internet Explorer\Main\Start Page

于 2016-08-17T23:27:26.907 回答