zoukankan      html  css  js  c++  java
  • 注册表法修改IE8安全级别的方法

    最近写客户端工具修复IE浏览器的一些功能,下面是网上找到的东东

    1、将当前用户IE安全级别设置为“中”:

    Windows Registry Editor Version 5.00
    [HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionInternet Settingsones3]
    "CurrentLevel"=dword:00011000
    "1207"=dword:00000000
    "1208"=dword:00000000
    "120B"=dword:00000000
    "1408"=dword:00000000
    "160A"=dword:00000000
    "2005"=dword:00000000
    "2103"=dword:00000000
    "2104"=dword:00000000
    "2105"=dword:00000000

    2、使所有用户使用相同的IE安全设置:

    [HKEY_LOCAL_MACHINESoftwarePoliciesMicrosoftWindowsCurrentVersionInternet Settings]
    
    "Security_HKLM_only"=dword:00000001

    说明:Internet
    Settings以及“Security_HKLM_only”原来没有,为新建,键值为时1(DWORD)时应用到所有的用户,为0或不存在时只应用到当前用户。

    3、关闭在首次打开IE8(或重置后)弹出“设置Windows Internet Explorer”窗口:

    [HKEY_CURRENT_USERSoftwareMicrosoftInternet ExplorerMain]
    
    "DisableFirstRunCustomize"=dword:00000001

    4、对所有网站使用“兼容性视图”:

    Windows Registry Editor Version 5.00 
    
    [HKEY_CURRENT_USERSoftwareMicrosoftInternet ExplorerBrowserEmulation]
    "AllSitesCompatibilityMode"=dword:00000001
  • 相关阅读:
    详解著名的awk Oneliner,第三部分:选择性输出特定行
    显示特定行
    nWave指令
    make 命令
    VIM脚本变量
    terninal 快捷键
    vim 实现begin end 配对 使用matchit插件
    VIM删除重复行
    linux命令--find(1)
    zabbix--创建触发器
  • 原文地址:https://www.cnblogs.com/freeton/p/3675018.html
Copyright © 2011-2022 走看看