반응형

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

반응형
반응형

Terabyte 디스크 백업&복구 v1.0 초안
https://noways.tistory.com/2046

 

Terabyte 디스크 백업&복구 v1.0 초안

Terabyte 디스크 백업&복구 v1.0 초안 ■ Image for Windows User Manual : https://www.terabyteunlimited.com/downloads/ifw_en_manual.pdf └▶ 142페이지 Running Image for Windows from the Command Line 참고  Compression Options■ Image for

noways.tistory.com

 

백업&복구 - UI 구성 

 

디스크 백업, 복구

 

백업 파일 이름 입력 자동화

백업 파일 이름을 지정할 수 있으며, 지정할 경우 이름-날짜-시간 형식으로 자동 생성됩니다. 이름을 입력하지 않을 경우 backup-날짜-시간 형식으로 자동 입력됩니다. 

You can specify a name for the backup file. If specified, the name will be automatically generated in the format "name-date-time." If no name is provided, it will default to "backup-date-time."

 

 

복구 파일 수동 지정 및 디렉토리 깊이 단계 설정 후 자동 검색 가능

디스크 복구 시 디렉토리 깊이 단계를 설정하면, 백업 파일을 자동으로 검색하여 백업 파일 목록을 콤보박스에 출력하도록 기능이 개선되었습니다. 
During disk recovery, the functionality has been enhanced to automatically search for backup files based on the configured directory depth and display the backup file list in the combo box. 

 

 

https://www.terabyteunlimited.com/downloads/ifw_en_manual.pdf

187 페이지 - 전원 옵션

Terabyte Image for Windows 전원 옵션 명령어

/rb:n 옵션은 백업 작업 완료 후 Image for Windows가 수행할 동작을 지정하는 데 사용됩니다. 여기서 n은 다음 값 중 하나를 가질 수 있습니다:

0: 아무 동작도 하지 않음 (재부팅 안 함).
1: 모든 메시지가 표시된 상태로 재부팅.
2: 완료 메시지를 표시한 후 재부팅하되, 재부팅 메시지는 표시하지 않음 (오류 발생 시 재부팅 취소되지 않음).
4: 완료 메시지나 재부팅 메시지를 표시하지 않고 재부팅 (오류 발생 시 재부팅 취소).
8: 시스템 종료 (Shutdown).
16: 절전 모드로 전환 (Suspend/Sleep).
32: 최대 절전 모드로 전환 (Hibernate).
64: 프로그램 종료 (Exit program).

ifw.exe /b /f:backupfile.tbi /rb:8

--------------------------------------------------------------------------------------

/rb:n N/A
Use this option to specify what Image for Windows should do after completing the
backup operation. The value n can be one of the following:
0 – No reboot
1 – Reboot with all prompts
2 – Reboot with completion message, but without reboot message (error does not
Image for Windows User Manual Page 189 of 270
cancel reboot)
4 – Reboot without completion message or reboot message (error cancels reboot)
8 – Shutdown*
16 – Suspend (sleep)*
32 – Hibernate*
64 – Exit program

Terabyte Image for Windows 디스크 백업 - 움짤 GIF

 

Terabyte Image for Windows 디스크 복구 - 움짤 GIF

 

 

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

 

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

donaricano-btn

반응형
반응형

 

VHD를 생성하고 이를 X 드라이브에 연결한 후, WIM 파일을 마운트하여 수정 작업이 용이하도록 구성해보았습니다. 다만, 테스트 시간이 충분하지 않았기 때문에 완성도가 다소 부족할 수 있다는 점 감안해주시면 감사하겠습니다. 활용 방법은 유튜브 영상을 참고하세요.

 

VHD-WIM Toolkit v1.0.zip
0.55MB

 

 

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

 

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

donaricano-btn

반응형
반응형

Terabyte 디스크 백업&복구 v1.0 초안

 

■ Image for Windows User Manual : https://www.terabyteunlimited.com/downloads/ifw_en_manual.pdf

 └▶ 142페이지 Running Image for Windows from the Command Line 참고

 

 

Compression Options

■ Image for Windows User Manual : https://www.terabyteunlimited.com/downloads/ifw_en_manual.pdf
 └▶ 192페이지 Compression Options 참고

[Settings]
Compression=14
;1 – Standard(표준)
;14 – Enhanced Speed(향상된 속도) - A
;15 – Enhanced Speed(향상된 속도) - B
;수동으로 아래 값 지정하여 사용 가능 
;0 – None(없음)
;2 – Enhanced Size(향상된 크기) - A
;7 – Enhanced Size(향상된 크기) - B
;10 – Enhanced Size(향상된 크기) - C
;11 – Enhanced Size(향상된 크기) - D
;12 – Enhanced Size(향상된 크기) - E
;13 – Enhanced Size(향상된 크기) - F

 

 

Command : Imagew64.exe /b /d:0 /f:D:\Backup\win10-2024-12-27-20-59.tbi /comp:14

 

Command : Imagew64.exe /r /f:D:\Backup\win10-2024-12-27-20-59.tbi /d:0

 

Terabyte Image for Windows 디스크 백업 - 움짤 GIF

 

Terabyte Image for Windows 디스크 복원 - 움짤 GIF

 

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

 

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

donaricano-btn

반응형

+ Recent posts