IE Definindo na política de grupo - Desativar detecção automática de configuração em Configurações da LAN

2

tem tentado caçar isso por semanas sem sorte.

Eu preciso de uma maneira de desabilitar uma configuração ...

no IE.

Ferramentas > Conexões > Definição de Lan Preciso desmarcar "detectar configurações automaticamente"

alguém sabe uma maneira de fazer isso por meio da política de grupo.

todo usuário no IE 9 ou IE 10

Obrigado

    
por Greg 22.10.2013 / 14:41

6 respostas

3

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

    
por 22.10.2013 / 15:26
2

Uma versão modificada do script fornecida pelo @ Knuckle-Dragger e pronta para ser colocada em um arquivo .cmd / .bat para apenas clicar e executar o script.

@echo off

powershell -Command "& {"^
 "$settings = (Get-ItemProperty "^
 "-Path     'registry::HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings\Connections' "^
 "-Name DefaultConnectionSettings).DefaultConnectionSettings;"^
 "$settings[8] = $settings[8] -band (-bnot 8);"^
 "Set-ItemProperty -Path     'registry::HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings\Connections' -Name DefaultConnectionSettings -Value $settings"^
"}"
    
por 29.05.2017 / 16:36
1

Expandindo a outra resposta, aqui está um script do PowerShell para inverter o bit.

$flip = (Get-ItemProperty -Path 'registry::HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings\Connections' -Name DefaultConnectionSettings).DefaultConnectionSettings
$flip[8]
$flip[8] = !$flip[8]
$flip[8]
Set-ItemProperty -Path 'registry::HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings\Connections' -Name DefaultConnectionSettings -Value $flip
    
por 18.09.2014 / 08:58
1

Em uma estação de trabalho típica, desmarquei manualmente a opção "Detectar configurações automaticamente" e, em seguida, copiei essa configuração de registro para a Configuração do usuário > Preferências > Configurações do Windows > Registro:

HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings\Connections\DefaultConnectionSettings

Hive: HKEY_CURRENT_USER 
Key path: Software\Microsoft\Windows\CurrentVersion\Internet Settings\Connections 
Value name: DefaultConnectionSettings 
Value type: REG_BINARY 
Value data: 4600000015000000010000000000000000000000000000000100000020000000687474703A2F2F777061642E73746166662E6C6F63616C2F777061642E64617452E5D052E2BACE010000000000000000000000000100000002000000CDBDC36F000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 

Não tenho certeza se você se importa com os dados do valor acima - acabei de importar tudo ...

    
por 26.06.2015 / 22:57
0

Parece haver uma configuração não documentada que funciona bem no Windows 2012 / 2012R2, por isso é possível que funcione no Windows 7 e superior.

Registry Key : HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings\ DWORD AutoDetect = 0 or 1

    
por 10.04.2016 / 14:14
0

salve-o como vbs e aplique no script de logon do GPO ou, se isso não ajudar, veja aqui link

Option Explicit
On Error Resume Next
Dim WshShell
Set WshShell=CreateObject("WScript.Shell")
WshShell.RegWrite "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings\AutoDetect","0","REG_DWORD"
    
por 10.04.2016 / 15:12