반응형

소프트웨어 선택 자동설치를 무인설치 응답파일(unattend.xml) oobeSystem - FirstLogonCommands 구간에 RunOnce 명령을 추가 하여 설치 과정을 녹화해 보았습니다. reg add HKCU\Software\Microsoft\Windows\CurrentVersion\RunOnce /v FirstLogin /t REG_SZ /d 참고 하여 활용해 보시기 바랍니다.

 

AutoInstall v4.0.zip
1.31MB

 

 

 

https://learn.microsoft.com/ko-kr/windows/win32/setupapi/run-and-runonce-registry-keys

 

RunOnce 레지스트리 키 실행 및 실행 - Win32 apps

실행 또는 RunOnce 레지스트리 키를 사용하여 사용자가 로그온할 때 프로그램을 실행합니다.

learn.microsoft.com

 

RunOnce 레지스트리 키 실행 및 실행
또는 RunOnce 레지스트리 키를 사용하여 Run 사용자가 로그온할 때 프로그램을 실행합니다. 키는 Run 사용자가 로그온할 때마다 프로그램을 실행하게 하고, RunOnce 키는 프로그램을 한 번 실행한 다음 키가 삭제됩니다. 이러한 키는 사용자 또는 컴퓨터에 대해 설정할 수 있습니다.

키의 데이터 값은 260자 이하의 명령줄입니다. 양식 설명-문자열=명령줄의 항목을 추가하여 실행할 프로그램을 등록합니다. 키 아래에 여러 항목을 쓸 수 있습니다. 특정 키로 둘 이상의 프로그램이 등록된 경우 해당 프로그램이 실행되는 순서는 확정되지 않습니다.

Windows 레지스트리에는 다음 4개의 Run 키와 RunOnce 키가 포함됩니다.

개별 사용자 지속용 : HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run 
개별 사용자 일회용 : HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\RunOnce
전체 사용자 지속용 : HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Run
전체 사용자 일회용 : HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\RunOnce

 

<?xml version="1.0" encoding="utf-8"?>
<unattend xmlns="urn:schemas-microsoft-com:unattend">
    <settings pass="windowsPE">
    </settings>
    <settings pass="specialize">
        <component name="Microsoft-Windows-Deployment" 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">
	<RunSynchronous>
	<!-- x64 WanDrv7 런처(EDLauncher.bat 배치 파일이 있으면 실행하고 없으면 종료) -->
		<RunSynchronousCommand wcm:action="add">
			<Order>1</Order>
			<Path>cmd.exe /c if exist "%Windir%\Setup\Scripts\EDLauncher.bat" "%Windir%\Setup\Scripts\EDLauncher.bat"</Path>
			<Description>Auto Driver Launcher</Description>
		</RunSynchronousCommand>
	</RunSynchronous>
	</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">
	<!-- 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>
	<!-- RunOnce 바탕화면 진입 시 1회 실행 할 항목 등록, ex) 아래 경로에 AutoInstall.cmd 파일이 있으면 등록 없으면 패스 -->
		<SynchronousCommand wcm:action="add">
			<Order>1</Order>			
			<CommandLine>cmd.exe /c if exist "C:\AutoInstall\AutoInstall.cmd" reg add HKCU\Software\Microsoft\Windows\CurrentVersion\RunOnce /v FirstLogin /t REG_SZ /d "C:\AutoInstall\AutoInstall.cmd" /f</CommandLine>
			<Description>Run AutoInstall.cmd Script if Exists</Description>
		</SynchronousCommand>
	</FirstLogonCommands>
	<!-- 해상도 설정 -->
	<Display>
		<HorizontalResolution>1024</HorizontalResolution>
		<VerticalResolution>768</VerticalResolution>
		<ColorDepth>32</ColorDepth>
	</Display>
	</component>
    </settings>
    <cpi:offlineImage cpi:source="" xmlns:cpi="urn:schemas-microsoft-com:cpi" />
</unattend>

 

 

 

소프트웨어 선택 자동 설치 v4.0 무인설치 연동 - 움짤 GIF



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

 

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

donaricano-btn

반응형
반응형

프로그램 실행 시 Setting.ini 파일이 없으면 생성, 있으면 기존 구성 사용


 - 다운로드탭

  • 열에 체크박스 10개 출력 후 초과시 2열에 10개 출력
  • 체크박스 선택 상태 실시간으로 setting.ini 파일에 반영 됨
  • 체크박스 선택 후 다운로드 시작 버튼 클릭
  • 다운로드 라벨, URL 수정 가능

 - Link탭 - 구상중 . . .

 

 

다운로드 도구 사용 방법 - 움짤 GIF

반응형
반응형

2024년 12월 15일 기준으로 설치 파일 갱신

홈, 기타 탭에서 설치할 항목을 선택하여 순차적으로 설치 합니다.

 

 

프로그램 자동 설치 옵션(Arg) 참고

설치 파일 이름은 와일드카드 사용으로 버전에 상관없이 최신 버전의 설치 파일로 교체하시면 됩니다.

; ---------------- Home 섹션 ----------------
[Home_7-Zip]
Exe = 7z*.exe
Arg = /S
Run = 0
[Home_Bandizip]
Exe = BANDIZIP*.exe
Arg = /S /auto
Run = 1
[Home_BandiView]
Exe = BANDIVIEW*.exe
Arg = /S /auto
Run = 0
[Home_FSViewer]
Exe = FSViewer*.exe
Arg = /S
Run = 1
[Home_Everything]
Exe = Everything*.exe
Arg = /S
Run = 0
[Home_Google Chrome]
Exe = googlechrome*.msi
Arg = /qn /norestart
Run = 1
[Home_Firefox]
Exe = Firefox*.exe
Arg = /S
Run = 0
[Home_Naver Whale]
Exe = Whale*.exe
Arg = /silent
Run = 0
[Home_PotPlayer]
Exe = PotPlayer*.exe
Arg = /S
Run = 1
[Home_KakaoTalk]
Exe = KakaoTalk*.exe
Arg = /S
Run = 0
[Home_Adobe Reader]
Exe = AcroRdrDC*.exe
Arg = /sAll /rs /msi EULA_ACCEPT=YES
Run = 0
[Home_ALPDF]
Exe = ALPDF*.exe
Arg = /silent
Run = 0
[Home_Acrobat Pro]
Exe = AcrobatPro\setup.exe
Arg = CmdLine=/sPB /rs
Run = 1
[Home_HancomESD2022]
Exe = HancomESD2022\Setup.exe
Arg = 
Run = 1
[Home_Office2016(All)]
Exe = Office2021\OInstall*.exe
Arg = /configure 2016ProPlusVolAll.xml /convert
Run = 0
[Home_Office2016(Word, Excel, PowerPoint)]
Exe = Office2021\OInstall*.exe
Arg = /configure 2016ProPlusVol.xml /convert
Run = 0
[Home_Office2019(All)]
Exe = Office2021\OInstall*.exe
Arg = /configure 2019ProPlusVolAll.xml /convert
Run = 0
[Home_Office2019(Word, Excel, PowerPoint)]
Exe = Office2021\OInstall*.exe
Arg = /configure 2019ProPlusVol.xml /convert
Run = 0
[Home_Office2021(All)]
Exe = Office2021\OInstall*.exe
Arg = /configure 2021ProPlusVolAll.xml /convert
Run = 0
[Home_Office2021(Word, Excel, PowerPoint)]
Exe = Office2021\OInstall*.exe
Arg = /configure 2021ProPlusVol.xml /convert
Run = 1
; ---------------- Other 섹션 ----------------
[Other_Discord]
Exe = Discord*.exe
Arg = /S
Run = 0
[Other_Steam]
Exe = Steam*.exe
Arg = /S
Run = 0
[Other_OBS-Studio]
Exe = OBS-Studio*.exe
Arg = /S
Run = 0
[Other_Shana Encoder]
Exe = ShanaEncoder*.exe
Arg = /S
Run = 0
[Other_Bandicut]
Exe = Bandicut*.exe
Arg = /S /auto
Run = 0
[Other_BDCAM]
Exe = BDCAM*.exe
Arg = /S /auto
Run = 0
[Other_GOMPLAYER]
Exe = GOMPLAYER*.exe
Arg = /S
Run = 0
[Other_VLC Media Player]
Exe = vlc*.exe
Arg = /S
Run = 0
[Other_AIMPlayer]
Exe = aimp*.exe
Arg = /AUTO /SILENT
Run = 0
[Other_PhotoScape]
Exe = PhotoScape*.exe
Arg = /S
Run = 0
[Other_ALZip]
Exe = ALZip*.exe
Arg = /silent
Run = 0
[Other_ALSee]
Exe = ALSee*.exe
Arg = /silent
Run = 0
[Other_ALCapture]
Exe = ALCapture*.exe
Arg = /silent
Run = 0
[Other_ALSong]
Exe = ALSong*.exe
Arg = /silent
Run = 0
[Other_ALYac]
Exe = ALYac*.exe
Arg = /silent
Run = 0
[Other_Goclean]
Exe = gocleans*.exe
Arg = /S
Run = 0
[Other_DaVu Indy]
Exe = DaVuInd*.exe
Arg = /SILENT /NORESTART
Run = 0

 

H:.
│  AutoInstall v3.0.iso [6.49GB]
│  트리구조.txt
│  
└─AutoInstall v3.0
    │  7z2409-x64.exe
    │  AcroRdrDC2400520320_ko_KR.exe
    │  aimp_5.30.2563_w32.exe
    │  ALCapture317.exe
    │  ALPDF401.exe
    │  ALSee934.exe
    │  ALSong352.exe
    │  ALYac25.exe
    │  ALZip1227.exe
    │  AutoInstall.cmd
    │  AutoInstall.exe
    │  AUTORUN.INF
    │  bandicut-setup-kor.exe
    │  BANDIVIEW-SETUP-X64.EXE
    │  BANDIZIP-SETUP-STD-X64.EXE
    │  BDCAMSETUP_KOR.EXE
    │  DaVuIndy919.exe
    │  DiscordSetup.exe
    │  Everything-1.4.1.1026.x64-Setup.exe
    │  Firefox Setup 133.0.3.exe
    │  FSViewerSetup79.exe
    │  gocleansetup152.exe
    │  GOMPLAYERKORSETUP.EXE
    │  googlechromestandaloneenterprise64.msi
    │  KakaoTalk_Setup.exe
    │  OBS-Studio-31.0.0-Windows-Installer.exe
    │  Packege.ico
    │  PhotoScapeSetup_V3-7.exe
    │  PotPlayerSetup.exe
    │  Setting.ini
    │  ShanaEncoder6.0.1.7.exe
    │  SteamSetup.exe
    │  vlc-3.0.21-win64.exe
    │  WhaleSetupX64.exe
    │  
    ├─AcrobatPro
    │  │  ABCPY.INI
    │  │  AcrobatHelper.exe
    │  │  AcroPro.msi
    │  │  AlfSdPack.cab
    │  │  Core.cab
    │  │  Extras.cab
    │  │  Intermediate.cab
    │  │  Languages.cab
    │  │  Optional.cab
    │  │  patch.cmd
    │  │  Patch.msp
    │  │  setup.exe
    │  │  setup.ini
    │  │  WindowsInstaller-KB893803-v2-x86.exe
    │  │     
    │  ├─Transforms
    │  │      
    │  └─VCRT_x64
    │          
    ├─HancomESD2022
    │  │  cab1.cab
    │  │  cab10.cab
    │  │  cab11.cab
    │  │  cab2.cab
    │  │  cab3.cab
    │  │  cab4.cab
    │  │  cab5.cab
    │  │  cab6.cab
    │  │  cab7.cab
    │  │  cab8.cab
    │  │  cab9.cab
    │  │  HOffice120.msi
    │  │  HOffice2022Update_20240624.exe
    │  │  InstallerConfig.ini
    │  │  MicrosoftRootCertificateAuthority2010.cer
    │  │  MicrosoftRootCertificateAuthority2011.cer
    │  │  ndp48-x86-x64-allos-enu.exe
    │  │  Setup.exe
    │  │  vcredist_x86.exe
    │  │  VC_redist.x86.exe
    │  │  
    │  └─Install_UI
    │              
    └─Office2021
        │  2016ProPlusVol.xml
        │  2016ProPlusVolAll.xml
        │  2019ProPlusVol.xml
        │  2019ProPlusVolAll.xml
        │  2021ProPlusVol.xml
        │  2021ProPlusVolAll.xml
        │  2024ProPlusVol.xml
        │  autorun.inf
        │  KMS_VL_ALL_AIO.cmd
        │  OInstallLite x64.exe
        │  
        ├─files
        │          
        └─Office
            └─Data
                │  
                └─16.0.14332.20828

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

 

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

donaricano-btn

반응형
반응형

홈, 기타 탭 추가 개선

자동 설치가 가능한 잡동사니 추가해 봄

 

AutoInstall v2.5 기타 설치 - 움짤 GIF

 

Setting.ini Home / Other 섹션 구분

; ---------------- Home 섹션 ----------------
[Home_7-Zip]
Exe = 7z*.exe
Arg = /S
Run = 0
[Home_Bandizip]
Exe = BANDIZIP*.exe
Arg = /S /auto
Run = 1
[Home_BandiView]
Exe = BANDIVIEW*.exe
Arg = /S /auto
Run = 0
[Home_FSViewer]
Exe = FSViewer*.exe
Arg = /S
Run = 1
[Home_Everything]
Exe = Everything*.exe
Arg = /S
Run = 0
[Home_Google Chrome]
Exe = googlechrome*.msi
Arg = /qn /norestart
Run = 1
[Home_Firefox]
Exe = Firefox*.exe
Arg = /S
Run = 0
[Home_Naver Whale]
Exe = Whale*.exe
Arg = /silent
Run = 0
[Home_PotPlayer]
Exe = PotPlayer*.exe
Arg = /S
Run = 1
[Home_KakaoTalk]
Exe = KakaoTalk*.exe
Arg = /S
Run = 0
[Home_Adobe Reader]
Exe = AcroRdrDC*.exe
Arg = /sAll /rs /msi EULA_ACCEPT=YES
Run = 0
[Home_ALPDF]
Exe = ALPDF*.exe
Arg = /silent
Run = 0
[Home_Acrobat Pro]
Exe = AcrobatPro\setup.exe
Arg = CmdLine=/sPB /rs
Run = 1
[Home_HancomESD2022]
Exe = HancomESD2022\Setup.exe
Arg = 
Run = 1
[Home_Office2016(All)]
Exe = Office2021\OInstall*.exe
Arg = /configure 2016ProPlusVolAll.xml
Run = 0
[Home_Office2016(Word, Excel, PowerPoint)]
Exe = Office2021\OInstall*.exe
Arg = /configure 2016ProPlusVol.xml
Run = 0
[Home_Office2019(All)]
Exe = Office2021\OInstall*.exe
Arg = /configure 2019ProPlusVolAll.xml
Run = 0
[Home_Office2019(Word, Excel, PowerPoint)]
Exe = Office2021\OInstall*.exe
Arg = /configure 2019ProPlusVol.xml
Run = 0
[Home_Office2021(All)]
Exe = Office2021\OInstall*.exe
Arg = /configure 2021ProPlusVolAll.xml
Run = 0
[Home_Office2021(Word, Excel, PowerPoint)]
Exe = Office2021\OInstall*.exe
Arg = /configure 2021ProPlusVol.xml
Run = 1
; ---------------- Other 섹션 ----------------
[Other_Discord]
Exe = Discord*.exe
Arg = /S
Run = 0
[Other_Steam]
Exe = Steam*.exe
Arg = /S
Run = 0
[Other_OBS-Studio]
Exe = OBS-Studio*.exe
Arg = /S
Run = 0
[Other_Shana Encoder]
Exe = ShanaEncoder*.exe
Arg = /S
Run = 0
[Other_Bandicut]
Exe = Bandicut*.exe
Arg = /S /auto
Run = 0
[Other_BDCAM]
Exe = BDCAM*.exe
Arg = /S /auto
Run = 0
[Other_GOMPLAYER]
Exe = GOMPLAYER*.exe
Arg = /S
Run = 0
[Other_VLC Media Player]
Exe = vlc*.exe
Arg = /S
Run = 0
[Other_AIMPlayer]
Exe = aimp*.exe
Arg = /AUTO /SILENT
Run = 0
[Other_PhotoScape]
Exe = PhotoScape*.exe
Arg = /S
Run = 0
[Other_ALZip]
Exe = ALZip*.exe
Arg = /silent
Run = 0
[Other_ALSee]
Exe = ALSee*.exe
Arg = /silent
Run = 0
[Other_ALCapture]
Exe = ALCapture*.exe
Arg = /silent
Run = 0
[Other_ALSong]
Exe = ALSong*.exe
Arg = /silent
Run = 0
[Other_ALYac]
Exe = ALYac*.exe
Arg = /silent
Run = 0
[Other_Goclean]
Exe = gocleans*.exe
Arg = /S
Run = 0
[Other_DaVu Indy]
Exe = DaVuInd*.exe
Arg = /SILENT /NORESTART
Run = 0

 

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

 

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

donaricano-btn

반응형

+ Recent posts