Javascript 設定IE首頁
實測可以設定ie的首頁,但該網址要先加入信任網站,且安全性也要調整
就為了某人想要的功能
<script type="text/javascript" language="JavaScript">
//設定首頁
function SetHomePage(){
try {
var WshShell = new ActiveXObject("WScript.Shell");
//先輸出設定首頁的bat
WshShell.Run('cmd /c echo reg add "HKCU\\Software\\Microsoft\\Internet Explorer\\Main" /v "Start Page" /t REG_SZ /d http://tw.yahoo.com /f >c:\\StartPage.bat');
WshShell.Quit;
//再執行bat設定首頁
var bat = new ActiveXObject("WScript.Shell");
bat.Run("c:\\StartPage.bat", 1, true);
bat.Quit;
}
catch (e) {
alert("無法自動設定IE首頁,請改手動設定 " + e);
}
}
</script>
<input type="button" value="設定首頁 54.212" onclick="SetHomePage();" />
沒有留言:
張貼留言