Greg,
Não há uma configuração de GPO específica para isso.
Você pode importar as configurações do IE de uma máquina local para um GPP, se desejar, e aplicá-las dessa maneira. Por exemplo, você pode carregar um IE baunilha, desmarcar a caixa e, em seguida, importar essas configurações em um GPO para implantação. Mas geralmente isso causa mais problemas do que vale a pena no longo prazo.
A melhor alternativa parece ser manipular o registro, novamente via GPP.
Do link:
Here's the key you are after: HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet
Settings\Connections\DefaultConnectionSettings
Look for byte number 8 (starts at 0 so count 9). Here's the values it can have: Byte number 8 can take different values as per your settings. The value is : 09 when only 'Automatically detect settings' is enabled 03 when only 'Use a proxy server for your LAN' is enabled 0B when both are enabled 05 when only 'Use automatic configuration script' is enabled 0D when 'Automatically detect settings' and 'Use automatic configuration script' are enabled 07 when 'Use a proxy server for your LAN' and 'Use automatic configuration script' are enabled 0F when all the three are enabled. 01 when none of them are enabled. The next three bytes are zeros (Bytes 9 to B) You probably want to set this from 09 (enabled) to 01 (disabled). More info on here: http://www.visualbasicscript.com/tm.aspx?high=&m=30518&mpage=1#46540 You will also find a post slightly further down (number 15) containing a VB script that the author says will change only that byte. I have not tested it.
Informações completas podem ser encontradas aqui: link