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
  • 相关阅读:
    选择器的区别
    固定DIV样式
    图片自适应不变形
    CSS实现图片在div a标签中水平垂直居中
    2017年校招全国统一模拟笔试 页码统计
    LeetCode 23. Merge k Sorted Lists
    LeetCode 15. 3Sum
    LeetCode 12. Integer to Roman
    LeetCode 11. Container With Most Water
    LeetCode 8. String to Integer (atoi)
  • 原文地址:https://www.cnblogs.com/freeton/p/3675018.html
Copyright © 2011-2022 走看看