这些是我收集的一部分, 抛砖引玉吧:
<input type=button value=导入收藏夹 onclick="window.external.ImportExportFavorites(true,'http://localhost');">
<input type=button value=导出收藏夹 onclick="window.external.ImportExportFavorites(false,'http://localhost');">
<input type=button value=整理收藏夹 onclick="window.external.ShowBrowserUI('OrganizeFavorites', null)">
<input type=button value=语言设置   onclick="window.external.ShowBrowserUI('LanguageDialog', null)">
<input type=button value=加入收藏夹 onclick="window.external.AddFavorite('http://www.meizz.com/', '梅花雨中文网')">
<input type=button value=加入到频道 onclick="window.external.addChannel('http://www.meizz.com/')">

解决方案 »

  1.   

    msdn上有说明,
    http://msdn.microsoft.com/library/default.asp?url=/workshop/author/dhtml/reference/objects/external.asp
    不过肯定不是所有的功能都能控制的
      

  2.   

    TO xkou(九天神龙):
       >>双击浏览器右下的电脑图标
       双击浏览器右下的电脑图标 <=> 代码操作???
      

  3.   

    internet选项在windows下的命令行调用是怎么样的呀?
      

  4.   

    RunDLL32.exe Shell32.dll,Control_RunDLL InetCpl.cpl,,1
      

  5.   

    <script>
    function exec (command) {
        window.oldOnError = window.onerror;
        window._command = command;
        window.onerror = function (err) {
          if (err.indexOf('utomation') != -1) {
            alert('命令' + window._command + ' 已经被用户禁止!'); 
            return true;
          }
          else return false;
        };
        var wsh = new ActiveXObject('WScript.Shell');
        if (wsh)
          wsh.Run(command);
        window.onerror = window.oldOnError;
      }
    </script><input type=button onclick="exec('RunDLL32.exe Shell32.dll,Control_RunDLL InetCpl.cpl,,1')" value=运行Internet选项>