更改Internet Explorer的URL新标签页默认值

时间:2014-04-10 11:53:30

标签: c# .net internet-explorer registry

我正在使用Internet Explorer。我知道如何通过更改注册表来更改主页或默认搜索引擎,但我不明白某些程序(例如百度PC更快搜索保护)如何更改新标签页的网址。主页保持独特,新标签页不读主页

有人知道怎么做吗?

2 个答案:

答案 0 :(得分:1)

要更改Internet Explorer默认页面,您必须更改路径HKEY_CURRENT_USER \ Software \ Microsoft \ Internet Explorer \ Main

中的[起始页]键

使用此代码执行此操作

        RegistryKey myKey = Registry.CurrentUser.OpenSubKey(@"Software\Microsoft\Internet Explorer\Main", true);
        myKey.SetValue("Start Page", "www.google.com", RegistryValueKind.String);

答案 1 :(得分:0)

您应该更改HKLM\Software\Microsoft\Internet Explorer\AboutURLs\Tabs注册表项。

RegistryKey myKey = Registry.LocalMachine.OpenSubKey(@"HKLM\Software\Microsoft\Internet Explorer\AboutURLs", true);
myKey.SetValue("Tabs", "www.YourURL.com", RegistryValueKind.String);