一、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 \\DC\SYSVOL\Domain\Policies\uniqueID\User\Preferences\InternetSettings 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.

四、用组策略的控制面板设置IE的proxy设定后,用户无法修改,这时去组策略的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 "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet 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 "User\Preferences\Internet Settings\Internet 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="Software\Microsoft\Windows\CurrentVersion\Internet 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>

Setting IE11 with Group Policy Preferences的更多相关文章

  1. GPP(Group Policy Preferences)漏洞

    再次之前先讲一些知识点: 密码的难题 每台Windows主机有一个内置的Administrator账户以及相关联的密码.大多数组织机构为了安全,可能都会要求更改密码,虽然这种方法的效果并不尽如人意.标 ...

  2. How to Add Trust Sites into IE before IE10 through Group Policy

    Due to IE10 published, I'll conclude the methods that how to add trust sites in to IE of the version ...

  3. RDP setting group policy

    RDP setting group policy 1.Login to domain controller and go to Group Policy Management tool2.Click ...

  4. Managing Group Policy with PowerShell

    Overview In this article, I’ll talk about your options when it comes to managing Group Policy using ...

  5. 10 Common Problems Causing Group Policy To Not Apply

    10 Common Problems Causing Group Policy To Not Apply Group Policy is a solid tool and is very stable ...

  6. How to apply Local Group Policy settings silently using the ImportRegPol.exe and Apply_LGPO_Delta.exe utilities.

    参考:http://supportishere.com/how-to-apply-local-group-policy-settings-silently-using-the-importregpol ...

  7. DFS security warning and use group policy to set up internet security zones

    Opening a file from a DFS domain share shows a security warning while openning from the server share ...

  8. Create a Group Policy Central Store

    一.How to create a Group Policy Central Store You have downloaded or created your own Group Policy Ad ...

  9. [转]Missing MSS Settings in Security Options of Group Policy (GPO)

    I'm currently working on a new Windows Server 2012 and Windows 8 project. As part of that project is ...

随机推荐

  1. DataURL与File,Blob,canvas对象之间的互相转换的Javascript (未完)

    canvas转换为dataURL (从canvas获取dataURL) var dataurl = canvas.toDataURL('image/png'); var dataurl2 = canv ...

  2. wpf 帧动画

    帧动画实现很简单 <ImageBrush x:Key="speed_s" Stretch="Fill" ImageSource="/images ...

  3. atitit.词法分析原理 词法分析器 (Lexer)

    atitit.词法分析原理 词法分析器 (Lexer) 1. 词法分析(英语:lexical analysis)1 2. :实现词法分析程序的常用途径:自动生成,手工生成.[1] 2 2.1. 词法分 ...

  4. MongoDB 将Json数据直接写入MongoDB的方法

    Json转Bson MongoDB中是以Bson数据格式进行存储的,Json字符串没有办法直接写入MongoDB 可以将Json字符串转换成DBObject或者Document,然后写入MongoDB ...

  5. Python 函数常用方法总结

    一.函数的定义与优势: 函数是组织好的,可重复使用的,用来实现单一,或相关联功能的代码段.函数能提高应用的模块性,和代码的重复利用率. Python提供了许多内建函数,比如print(),但也可以自己 ...

  6. 关于http ,那些你必须知道的事

    一,HTTP简介 1,HTTP协议是Hyper Text Transfer Protocol(超文本传输协议)的缩写,是用于从万维网(WWW:World Wide Web )服务器传输超文本到本地浏览 ...

  7. ecmall的物流配送体系改造

    接触多了ecshop.ecmall原始逻辑的,一般都习惯以整单的方式统一计算运费,这是一种很简单的思路. 但淘宝多了,就发现,物流运费没有那么简单. 首先,每种商品单独设置运费的体系,或者叫运费模板: ...

  8. 在windows下安装Redis步骤(收集)

    一.下载windows版本的Redis 去官网找了很久,发现原来在官网上可以下载的windows版本的,现在官网以及没有下载地址,只能在github上下载,官网只提供linux版本的下载 官网下载地址 ...

  9. Could not resolve dependencies for project

    最近项目上使用的是idea ide的多模块话,需要模块之间的依赖,比如说系统管理模块依赖授权模块进行认证和授权,而认证授权模块需要依赖系统管理模块进行,然后,我就开始相互依赖,然后出现这样的问题: “ ...

  10. python read文件内容的iter方式

    遍历file的方式 iter(lambda: f.read(4096), "")等价与while True: data = f.read(4096) if not data: br ...