반응형

윈도우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
 
반응형
반응형

무인설치 옵션 선택 응답파일(Unattend.xml) 생성기

기능 추가로 인한 무한 반복 테스트 진행 중 . . .

 

2024-05-31일 운영체제 비트(아키텍처) 선택 추가

 

Unattend.xml_생성기_고급.exe

  • Unattend.ini
  • Unattend_KO.ini
  • Unattend_EN.ini

■ 동영상 제목 클릭 후 전체화면(1080P)시청 가능합니다.

 

정보가 도움이 되었다면 아래 링크로 커피를 후원 해주세요. ^^

donaricano-btn

반응형
반응형

Microsoft Edge 첫 실행 마법사 비활성화 

https://gist.github.com/likamrat/f5f8fc13e64b2e3dbe737ef04dadb80d

 

Disable Microsoft Edge first-run Welcome screen

Disable Microsoft Edge first-run Welcome screen. GitHub Gist: instantly share code, notes, and snippets.

gist.github.com

Microsoft Edge 첫 실행 질문 시작 및 시작을 차단

PowerShell: Disable Microsoft Edge first run wizard

Disable_EdgeWelcome.ps1
0.00MB

$settings = 
[PSCustomObject]@{
    Path  = "SOFTWARE\Policies\Microsoft\Edge"
    Value = 1
    Name  = "HideFirstRunExperience"
} | group Path

foreach($setting in $settings){
    $registry = [Microsoft.Win32.Registry]::LocalMachine.OpenSubKey($setting.Name, $true)
    if ($null -eq $registry) {
        $registry = [Microsoft.Win32.Registry]::LocalMachine.CreateSubKey($setting.Name, $true)
    }
    $setting.Group | %{
        $registry.SetValue($_.name, $_.value)
    }
    $registry.Dispose()
}

 

HideFirstRunExperience.reg
0.00MB

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Edge]
"HideFirstRunExperience"=dword:00000001

 

윈도우 설치시 자동으로 HideFirstRunExperience 차단

unattend.xml
0.01MB

 

기본 샘플

<?xml version="1.0" encoding="utf-8"?>
<unattend xmlns="urn:schemas-microsoft-com:unattend">
    <settings pass="windowsPE">
    </settings>
    <settings pass="specialize">
    </settings>
    <settings pass="oobeSystem">
        <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
	<!-- OOBE 무인 설정(자동화) -->
	<OOBE>
		<!-- Windows 시작의 Microsoft 소프트웨어 사용 조건 페이지를 숨길지 여부를 지정합니다. -->
		<HideEULAPage>true</HideEULAPage>
		<!-- Windows 시작 중에 나타나는 무선 네트워크 연결 화면을 숨길지 여부를 지정합니다. -->
		<HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE>
		<!-- 사용자가 처음 로그온할 때 컴퓨터가 네트워크에 연결된 경우 네트워크의 위치를 지정합니다. -->
		<NetworkLocation>Work</NetworkLocation>
		<!-- 중요하고 권장되는 업데이트가 자동으로 설치되도록 지정합니다. -->
		<ProtectYourPC>3</ProtectYourPC>
		<SkipMachineOOBE>true</SkipMachineOOBE>
		<SkipUserOOBE>true</SkipUserOOBE>
	</OOBE>
	<!-- 관리자(Administrator) 계정으로 자동 로그인 -->
	<AutoLogon>
		<Enabled>true</Enabled>
		<LogonCount>1</LogonCount>
		<Username>Administrator</Username>
	</AutoLogon>
	<!-- 사용자가 컴퓨터에 처음으로 로그온할 때 실행할 명령을 지정합니다. -->
	<FirstLogonCommands>
	<!-- 모든 계정 암호 만료기간 제한 없음 -->
		<SynchronousCommand wcm:action="add">
			<RequiresUserInput>false</RequiresUserInput>
			<Order>1</Order>
			<Description>UserAccount</Description>
			<CommandLine>cmd /c wmic UserAccount set PasswordExpires=False</CommandLine>
		</SynchronousCommand>
	<!-- Microsoft Edge 첫 실행 질문 시작 및 시작을 차단 -->
		<SynchronousCommand wcm:action="add">
			<Order>2</Order>
			<CommandLine>reg add "HKLM\SOFTWARE\Policies\Microsoft\Edge" /v HideFirstRunExperience /t REG_DWORD /d 1 /f</CommandLine>
			<Description>Disable Microsoft Edge first run wizard</Description>
		</SynchronousCommand>
	</FirstLogonCommands>
	</component>
    </settings>
    <cpi:offlineImage cpi:source="" xmlns:cpi="urn:schemas-microsoft-com:cpi" />
</unattend>

HideFirstRunExperience 적용(WIN10)

HideFirstRunExperience 적용(WIN11)

반응형
반응형

AD(Active Directory) 도메인에 자동 로그인 되도록 윈도우 설치 하는 과정을 녹화해 보았습니다. 모든 드라이브를 검색 해서 \Windows\Panther 경로에 unattend.xml 파일이 있으면 입력받은 값으로 수정 하여 활용 할 수 있으니 참고 하시기 바랍니다.

■ 응답파일 샘플 :

unattend_JoinDomain(AD).xml
0.01MB

 

<?xml version="1.0" encoding="utf-8"?>
<unattend xmlns="urn:schemas-microsoft-com:unattend">
    <settings pass="specialize">
        <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
	<!-- 컴퓨터 호스트 네임 변경 -->
	<ComputerName>DEFAULT</ComputerName>
	</component>
        <component name="Microsoft-Windows-UnattendedJoin" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
	<!-- AD 도메인 Join -->
	<Identification>
		<Credentials>
			<Domain>adserver.com</Domain>
			<Username>User1</Username>
			<Password>123456</Password>
		</Credentials>
	<JoinDomain>adserver.com</JoinDomain>
	</Identification>
        </component>
    </settings>
    <settings pass="oobeSystem">
        <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
	<!-- 도메인 계정으로 자동 로그인 -->
	<AutoLogon>
		<Enabled>true</Enabled>
		<Domain>adserver.com</Domain>
		<Username>User1</Username>
		<Password>
			<Value>123456</Value>
			<PlainText>true</PlainText>
		</Password>
	</AutoLogon>
        </component>
    </settings>
    <cpi:offlineImage cpi:source="" xmlns:cpi="urn:schemas-microsoft-com:cpi" />
</unattend>

■ 개선된 버전 : ChangeUnattend(2024-04-09)

└▶ 입력한 값만 변경됩니다.

└▶ 미입력 항목은 기존값 유지.

 

 

■ 동영상 제목 클릭 후 전체화면(1080P)시청 가능합니다.

 

정보가 도움이 되었다면 아래 링크로 커피를 후원 해주세요. ^^

donaricano-btn

반응형

+ Recent posts