zoukankan      html  css  js  c++  java
  • Setting IE11 with Group Policy Preferences

     


    一、Setting Home Page with Group Policy Preferences

       1、Open the Group Policy Management Console and create a new GPO.

       2、Browse to User Configuration -> Preferences -> Control Panel Settings -> Internet Settings. Right click and choose New -> Internet  Explorer 10.

      3、Enter the URL of the Home page you wish to set, and select start with home page. Notice the red dots underlining the home page entry.

      4、You must press F5 (or F6), to confirm the entry. If you do not the setting will not be applied. Once you have done so, the entry turns green.

      5、Function keys:

         F5 – Enable all settings on the current tab.

         F6 – Enable the currently selected setting.

         F7 – Disable the currently selected setting.

         F8 – Disable all settings on the current tab.

     

     


    二、Setting a Proxy with Group Policy Preferences

    Create or modify an existing Internet Settings policy as explained above, this time head over the connection tab -> Lan Settings.

    Specify the proxy, again note the red dots showing that the setting have not been confirmed. Press F5 to confirm.

    Takeaway

    • Internet Explorer Maintenance will NOT apply to to Internet Explorer 10 or above
    • You will not be able to modify existing IEM GPOs from machines with IE10 or above installed
    • Press F5 to confirm entries made to Group Policy Preferences Internet Settings, basically- made sure you’re green!

     

     


    三、Where is the option to add an Internet Explorer 11 Group Policy Preference Internet Settings Policy?

        1、There is no option. The Internet Explorer 10 option actually covers Internet Explorer from version 10 to … 99! That’s right 99. To prove this and to visually confirm this is the case, create a policy by using Internet Explorer 10 Internet Settings and find the unique ID of the GPO.

        2、Browse to \DCSYSVOLDomainPoliciesuniqueIDUserPreferencesInternetSettings and open the InternetSettings XML document in notepad. Note the 5th line which states version 10.0.0.0 -> 99.0.0.0.

        3、If you’re looking to use Group Policy Preferences to configure Internet Explorer 11, using the Internet Explorer 10 Internet Settings option will work for version 11 and future releases of Internet Explorer.

     

     


    四、用组策略的控制面板设置IEproxy设定后,用户无法修改,这时去组策略的XML文件中查看。

    The problem is due to fact that GPP editor incorrectly saves proxy/port values into XML file (it ignores checkbox "Use the same proxy server for all protocols" in Advanced window).

    这个问题是因为GPP proxy/prot的值保存到XML文件中,忽略了高级中的“use the same proxy server for all protocols”这个复选框。

     

    On client computers, proxy address and port are stored in registry value "ProxyServer" under "HKCUSoftwareMicrosoftWindowsCurrentVersionInternet Settings".

    client的计算机上,proxy地址和端口是存在注册表中的

     

    If you have "Use the same proxy ..." checkbox on, then this registry value keeps proxy parameters in form "<address>:<port>".

    你勘察注册表的值,可以看到proxy parameters是以地址:端口的形式

     

    However, if checkbox is off, then this value stores list of addresses and ports for different protocols:

    name="ProxyServer" "http=<address>:<port>;https=<address>:<port>;ftp=<address>:<port>".

     

    name="ProxyServer" value="<address>:<port>"

     

    如果checkbox是关闭的,这个值的形式是这样的。

     

    GPP "Internet Settings" component stores its data in GPO object directory, in XML file "UserPreferencesInternet SettingsInternet Settings.xml".

    IE的设置保存在Internet Settings.xml中。

     

    This file has lots of "Reg" elements which contain values for IE registry keys. The one responsible for proxy address(es) and port(s) is this:

    <Reg id="ProxyServerAndPort" type="REG_SZ" hive="HKEY_CURRENT_USER" key="SoftwareMicrosoftWindowsCurrentVersionInternet Settings" name="ProxyServer" value="..." />

    The value of "value" attribute is, obviously, what goes into "ProxyServer" registry value.

     

    If you open InternetSettings.xml after you've faced the problem described in the post, you'll notice that you have a list of proxy addresses and ports, despite the fact that "Use the same proxy..." checkbox was set when you edited the GPO.

     

    Solution is obvious: manually edit XML file and replace address/port list with single address/port pair, without specifying protocol (http/https/ftp).

    解决方法:手动编辑XML文件。

     

    Then you'll see your settings again, and it will be applied on clients as expected... until you edit and save it via

     


    参考博文:

    2、<http://community.spiceworks.com/topic/342202-ie-10-group-policy-help-needed-i-think-i-ve-found-a-bug?page=2>

     

  • 相关阅读:
    C# 串口通信总结
    客户端下载文件和服务器端下载文件总结
    Android 上传图片到 Asp.Net 服务器的问题
    iOS内存泄漏自动检测工具PLeakSniffer
    让iOS开发变得更有效率-分类、工具类
    分分钟解决iOS开发中App启动广告的功能
    响应者链及相关机制总结
    stackoverflow上关于iOS的票数最多(最常见)的15个问题
    iOS 开发之 ReactiveCocoa(进阶)
    iOS 开发之 ReactiveCocoa(基础)
  • 原文地址:https://www.cnblogs.com/thescentedpath/p/IESetting.html
Copyright © 2011-2022 走看看