반응형

소프트웨어 선택 자동설치를 무인설치 응답파일(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

반응형
반응형

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
    │  │  
    │  ├─patch
    │  │      
    │  ├─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
    │  │  HOffice120.msi_원본
    │  │  HOffice2022Update_20240624.exe
    │  │  InstallerConfig.ini
    │  │  LogoPatch.exe
    │  │  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.0.ISO [5.59GB] - 기타 제외

AutoInstall v2.5.ISO [6.33GB] - 기타 포함

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

 

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

반응형
반응형

1. 파일은 ISO 파일 형태로 제작 되었습니다.
└▶ 바이러스 오진으로 인한 파일 삭제 방지 목적
└▶ ISO 파일 탑재 후 자동 실행 혹은, AutoInstall.cmd으로 실행
└▶ AutoInstall.cmd 실행 시 디펜더 실행 여부를 판단하고 제외 목록을 자동으로 추가합니다.
└▶ 디펜더 미 실행 시 스킵 후 AutoInstall.exe가 실행 됩니다.

2. AutoInstall.exe를 실행하면 실행 경로에서 Setting.ini을 찾고 없으면 기본 프리셋을 생성합니다.
└▶ ISO 파일에는 기본 Setting.ini 파일이 포함되어 있습니다.
└▶ Setting.ini이 있으면 기존 파일을 로드하여 사용합니다.

3. Setting.ini 파일에 아래와 같은 프리셋이 20세트가 추가 되어 있습니다.
└▶ 순서대로 10세트를 출력하고 초과하는 경우 다음 열에 출력합니다.
└▶ 버전업에 따른 파일 교체 시 이름 변경 없이 설치 파일을 교체하여 추가하면 됩니다.

[7-Zip] 			프로그램 이름
Exe = 7z*.exe 		설치할 파일명(일정 패턴, 와일드카드 형식으로 사용 가능)
Arg = /S 			자동 설치 옵션
Run = 0 			기본 선택 유1, 무0


4. Setting.ini 파일을 수정 하여 출력되는 프로그램 순서를 변경하거나 새로 구성하여 설치에 활용할 수 있습니다.

5. 설치할 프로그램 체크박스를 선택하고 설치 시작 버튼을 누르면 왼쪽 상단부터 차례대로 설치됩니다.
└▶ 설치 시작 후 설치가 완료된 항목은 회색으로 비활성화 표시 됩니다.

└▶ 설치 진행 상황은 아래 프로그레스바에 표시됩니다.
└▶ 바로가기 생성 버튼으로 미생성 카카오톡, 오피스 바로가기를 공용 바탕화면에 생성할 수 있습니다.

 

AutoInstall v2.0 소프트웨어 자동 설치 샘플

[ WIN10 기본 선택 설치 ] AutoInstall v2.0 설치 WIN10 - 움짤 GIF

[ WIN10 전체 선택 설치 ] AutoInstall v2.0 설치 WIN10 - 움짤 GIF

[ WIN11 기본 선택 설치 ] AutoInstall v2.0 설치 WIN11 - 움짤 GIF

[ WIN11 전체 선택 설치 ] AutoInstall v2.0 설치 WIN11 - 움짤 GIF

추가적으로 아크로뱃 설치 옵션이 변경 되었습니다.

[Acrobat Pro]
Exe = AcrobatPro\setup.exe
Arg = CmdLine=/sPB /rs
Run = 1

 

Setting.ini

Setting.ini

[7-Zip]
Exe = 7z*.exe
Arg = /S
Run = 0
[Bandizip]
Exe = BANDIZIP*.exe
Arg = /S /auto
Run = 1
[BandiView]
Exe = BANDIVIEW*.exe
Arg = /S /auto
Run = 0
[FSViewer]
Exe = FSViewer*.exe
Arg = /S
Run = 1
[Everything]
Exe = Everything*.exe
Arg = /S
Run = 0
[Google Chrome]
Exe = googlechrome*.msi
Arg = /qn /norestart
Run = 1
[Firefox]
Exe = Firefox*.exe
Arg = /S
Run = 0
[Naver Whale]
Exe = Whale*.exe
Arg = /silent
Run = 0
[PotPlayer]
Exe = PotPlayer*.exe
Arg = /S
Run = 1
[KakaoTalk]
Exe = KakaoTalk*.exe
Arg = /S
Run = 0
[Adobe Reader]
Exe = AcroRdrDC*.exe
Arg = /sAll /rs /msi EULA_ACCEPT=YES
Run = 0
[ALPDF]
Exe = ALPDF*.exe
Arg = /silent
Run = 0
[Acrobat Pro]
Exe = AcrobatPro\setup.exe
Arg = CmdLine=/sPB /rs
Run = 1
[HancomESD2022]
Exe = HancomESD2022\Setup.exe
Arg = 
Run = 1
[Office2016(All)]
Exe = Office2021\OInstall*.exe
Arg = /configure 2016ProPlusVolAll.xml
Run = 0
[Office2016(Word, Excel, PowerPoint)]
Exe = Office2021\OInstall*.exe
Arg = /configure 2016ProPlusVol.xml
Run = 0
[Office2019(All)]
Exe = Office2021\OInstall*.exe
Arg = /configure 2019ProPlusVolAll.xml
Run = 0
[Office2019(Word, Excel, PowerPoint)]
Exe = Office2021\OInstall*.exe
Arg = /configure 2019ProPlusVol.xml
Run = 0
[Office2021(All)]
Exe = Office2021\OInstall*.exe
Arg = /configure 2021ProPlusVolAll.xml
Run = 0
[Office2021(Word, Excel, PowerPoint)]
Exe = Office2021\OInstall*.exe
Arg = /configure 2021ProPlusVol.xml
Run = 1

 

ISO 파일, 폴더 트리 구조

ISO 파일, 폴더 트리 구조

AutoInstall v2.0 볼륨에 대한 폴더 경로의 목록입니다.
볼륨 일련 번호는 B551-1883입니다.
J:.
│  7z2408-x64.exe
│  ALPDF401.exe
│  AUTORUN.INF
│  AcroRdrDC2400320112_ko_KR.exe
│  AutoInstall.cmd
│  AutoInstall.exe
│  BANDIVIEW-SETUP-X64.EXE
│  BANDIZIP-SETUP-STD-X64.EXE
│  Everything-1.4.1.1026.x64-Setup.exe
│  FSViewerSetup79.exe
│  Firefox Setup 132.0.2.exe
│  KakaoTalk_Setup.exe
│  Packege.ico
│  PotPlayerSetup.exe
│  Setting.ini
│  WhaleSetupX64.exe
│  googlechromestandaloneenterprise64.msi
│  
├─AcrobatPro
│  │  ABCPY.INI
│  │  AcroPro.msi
│  │  AcrobatHelper.exe
│  │  AlfSdPack.cab
│  │  Core.cab
│  │  Extras.cab
│  │  Intermediate.cab
│  │  Languages.cab
│  │  Optional.cab
│  │  Patch.msp
│  │  WindowsInstaller-KB893803-v2-x86.exe
│  │  patch.cmd
│  │  setup.exe
│  │  setup.ini
│  │  
│  ├─Transforms
│  ├─VCRT_x64
│  └─patch
│          
├─HancomESD2022
│  │  HOffice120.msi
│  │  HOffice120.msi_원본
│  │  HOffice2022Update_20240624.exe
│  │  InstallerConfig.ini
│  │  LogoPatch.exe
│  │  MicrosoftRootCertificateAuthority2010.cer
│  │  MicrosoftRootCertificateAuthority2011.cer
│  │  Setup.exe
│  │  VC_redist.x86.exe
│  │  cab1.cab
│  │  cab10.cab
│  │  cab11.cab
│  │  cab2.cab
│  │  cab3.cab
│  │  cab4.cab
│  │  cab5.cab
│  │  cab6.cab
│  │  cab7.cab
│  │  cab8.cab
│  │  cab9.cab
│  │  ndp48-x86-x64-allos-enu.exe
│  │  vcredist_x86.exe
│  │  
│  └─Install_UI
│              
└─Office2021
    │  2016ProPlusVol.xml
    │  2016ProPlusVolAll.xml
    │  2019ProPlusVol.xml
    │  2019ProPlusVolAll.xml
    │  2021ProPlusVol.xml
    │  2021ProPlusVolAll.xml
    │  2024ProPlusVol.xml
    │  KMS_VL_ALL_AIO.cmd
    │  OInstallLite x64.exe
    │  autorun.inf
    │  
    ├─Office
    │              
    └─files

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

 

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

donaricano-btn

반응형

+ Recent posts