zoukankan      html  css  js  c++  java
  • JS设置IE可信站点及ActiveX设置

    JS设置IE可信站点及ActiveX设置

    通过网页修改activex安全设置,添加信任站点,禁用弹出窗口阻止程序

    信任站点的注册表项:HKEY_CURRENT_USER/Software/Microsoft/Windows/CurrentVersion/Internet Settings/ZoneMap/Ranges/Range[*]

    ActiveX的注册表项:HKEY_CURRENT_USER/Software/Microsoft/Windows/CurrentVersion/Internet Settings/Zones/[0-4]/[*]

    [0-4]

    值 设置

    ------------------------------

    0 我的电脑

    1 本地 Intranet 区域

    2 受信任的站点区域

    3 Internet 区域

    4 受限制的站点区域

    [*]

    1001 下载已签名的 ActiveX 控件

    1004 下载未签名的 ActiveX 控件

    1200 运行 ActiveX 控件和插件

    1201 对没有标记为安全的 ActiveX 控件进行初始化和脚本运行

    1405 对标记为可安全执行脚本的 ActiveX 控件执行脚本

    2201 ActiveX 控件自动提示

    弹出窗口阻止程序的注册表项:HKEY_CURRENT_USERHKCU/Software/Microsoft/Internet Explorer/New Windows/PopupMgr

    具体脚本如下:

    <SCRIPT LANGUAGE="JavaScript">

    var WshShell=new ActiveXObject("WScript.Shell");

    //添加信任站点(http://192.168.1.5)

    WshShell.RegWrite("HKCU\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\ZoneMap\\Ranges\\Range100\\","");

    WshShell.RegWrite("
    HKCU\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\ZoneMap\\Ranges\\Range100\\:Range","10.114.72.139");

    WshShell.RegWrite("
    HKCU\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\ZoneMap\\Ranges\\Range100\\http","2","REG_DWORD");

    //修改IE ActiveX安全设置: 1本地Intranet区域

    WshShell.RegWrite("
    HKCU\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Zones\\1\\1001","0","REG_DWORD");

    WshShell.RegWrite("
    HKCU\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Zones\\1\\1004","0","REG_DWORD");

    WshShell.RegWrite("
    HKCU\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Zones\\1\\1200","0","REG_DWORD");

    WshShell.RegWrite("
    HKCU\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Zones\\1\\1201","0","REG_DWORD");

    WshShell.RegWrite("
    HKCU\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Zones\\1\\1405","0","REG_DWORD");

    WshShell.RegWrite("
    HKCU\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Zones\\1\\2201","0","REG_DWORD");

    //修改IE ActiveX安全设置:2受信任的站点区域

    WshShell.RegWrite("
    HKCU\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Zones\\2\\1001","0","REG_DWORD");

    WshShell.RegWrite("
    HKCU\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Zones\\2\\1004","0","REG_DWORD");

    WshShell.RegWrite("
    HKCU\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Zones\\2\\1200","0","REG_DWORD");

    WshShell.RegWrite("
    HKCU\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Zones\\2\\1201","0","REG_DWORD");

    WshShell.RegWrite("
    HKCU\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Zones\\2\\1405","0","REG_DWORD");

    WshShell.RegWrite("
    HKCU\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Zones\\2\\2201","0","REG_DWORD");

    //修改IE ActiveX安全设置:3Internet区域

    WshShell.RegWrite("
    HKCU\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Zones\\3\\1001","0","REG_DWORD");

    WshShell.RegWrite("
    HKCU\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Zones\\3\\1004","0","REG_DWORD");

    WshShell.RegWrite("
    HKCU\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Zones\\3\\1200","0","REG_DWORD");

    WshShell.RegWrite("
    HKCU\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Zones\\3\\1201","0","REG_DWORD");

    WshShell.RegWrite("
    HKCU\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Zones\\3\\1405","0","REG_DWORD");

    WshShell.RegWrite("
    HKCU\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Zones\\3\\2201","0","REG_DWORD");

    //禁用Winxp弹出窗口阻止程序

    WshShell.RegWrite("
    HKCU\\Software\\Microsoft\\Internet Explorer\\New Windows\\PopupMgr","no");

    </script>
  • 相关阅读:
    Git 简易手册
    【Swift】UILabel 设置内边距
    【iOS】屏幕适配之NSLayoutConstraint
    【Swift】TTTAttributedLabel使用小记
    【iOS】Alamofire库在iOS7下设置Head无效的问题
    【iOS】在Swift中使用JSONModel
    【读书笔记】100个Switf必备tips
    【读书笔记】长尾理论
    【读书笔记】结网
    嗯,农民伯伯的2014就是这些
  • 原文地址:https://www.cnblogs.com/lslvxy/p/3025456.html
Copyright © 2011-2022 走看看