반응형

윈도우10, 11 설치 시 자동 프록시 설정 끄기

Proxy auto-setting OFF.reg
0.00MB

 

Proxy auto-setting ON.reg
0.00MB

 

Proxy auto-setting OFF

Windows Registry Editor Version 5.00

 

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings]

"AutoDetect"=dword:00000000

 

 

Proxy auto-setting ON
Windows Registry Editor Version 5.00
 
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings]
"AutoDetect"=dword:00000001
 

 

<?xml version="1.0" encoding="utf-8"?>
<unattend xmlns="urn:schemas-microsoft-com:unattend">
    <settings pass="oobeSystem">
       
<!-- 사용자가 컴퓨터에 처음으로 로그온할 때 실행할 명령을 지정합니다. -->
<FirstLogonCommands>
<!-- 윈도우10, 11 네트워크 및 인터넷 > 프록시 > 자동 프록시 설정 OFF -->
<SynchronousCommand wcm:action="add">
<Order>1</Order>
<RequiresUserInput>false</RequiresUserInput>
<CommandLine>reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v "AutoDetect" /t REG_DWORD /d "0" /f</CommandLine>
</SynchronousCommand>
</FirstLogonCommands>
</component>
    </settings>
    <cpi:offlineImage cpi:source="" xmlns:cpi="urn:schemas-microsoft-com:cpi" />
</unattend>
 

 

Proxy auto-setting OFF 응답파일(unattend.xml) 적용 설치 - 움짤 GIF

 

 

Registrychangesview로 변경된 실제 레지스트리 변경 값을 찾아보니 아래 경로의 DefaultConnectionSettings 값이 변동 되었습니다.

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

 

헥스값을 변경 하니 거시기하고 설정값을 OFF하는데 문제없으므로 첨부한 레지스트리 그대로 사용해도 될 것 같습니다.

 

Connections_OFF

Windows Registry Editor Version 5.00

 

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings\Connections]

"DefaultConnectionSettings"=hex:46,00,00,00,0a,00,00,00,01,00,00,00,00,00,00,\

  00,00,00,00,00,00,00,00,00,01,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\

  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00

 

Reg.exe add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings\Connections" /v "DefaultConnectionSettings" /t REG_BINARY /d "460000000a000000010000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000" /f

 

 

Connections_ON
Windows Registry Editor Version 5.00
 
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings\Connections]
"DefaultConnectionSettings"=hex:46,00,00,00,0b,00,00,00,09,00,00,00,00,00,00,\
  00,00,00,00,00,00,00,00,00,01,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
 
Reg.exe add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings\Connections" /v "DefaultConnectionSettings" /t REG_BINARY /d "460000000b000000090000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000" /f
 
반응형

+ Recent posts