用c#语言通过修改注册表改IE网页首页

原文发布时间为:2009-04-19 —— 来源于本人的百度文章 [由搬家工具导入]

string key = @"HKEY_CURRENT_USERSoftwareMicrosoftInternet ExplorerMain"; string valueName = "Start Page"; string value = "http://www.163.com"; Registry.SetValue(key,valueName, value);
原文地址:https://www.cnblogs.com/handboy/p/7153275.html