반응형

Windows Setup Helper
https://github.com/jmclaren7/windows-setup-helper
https://github.com/jmclaren7/windows-setup-helper/blob/master/README.md

 

GitHub - jmclaren7/windows-setup-helper: GUI for Windows Installer to access tools and select installer automations from WinPE

GUI for Windows Installer to access tools and select installer automations from WinPE - jmclaren7/windows-setup-helper

github.com

 

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

 

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

donaricano-btn

반응형
반응형

프로비저닝(Provisioning) 패키지를 생성하여 깡통 윈도우 통합 ISO 파일에 무인설치 응답파일(AutoUnattend.xml)과 디스크 파티션 과정, 여러 설정 옵션을 포함하여 응용 프로그램까지 설치 하는 과정을 녹화해 보았습니다. 다수의 PC에 선택적인 반복 작업을 하시는 분에게 유용한 정보가 될 듯합니다.

Setup.ps1
0.00MB
Install_Software.ps1
0.01MB

프로비저닝(Provisioning) 관련 URL

■ Windows Configuration Designer: Provisioning software using PowerShell
https://www.youtube.com/watch?v=TGojza4RJHA&ab_channel=Let%27sdoautomation
■ Windows Configuration Designer: Configuring WiFi connection
https://www.youtube.com/watch?v=S2ysvv4KvRY&ab_channel=Let%27sdoautomation
■ windows-configuration-designer
https://github.com/letsdoautomation/windows-configuration-designer/tree/main/Provisioning%20software%20using%20PowerShell
■ Windows ADK 다운로드 및 설치
https://learn.microsoft.com/ko-kr/windows-hardware/get-started/adk-install

■ Windows ADK 윈도우 버전별 다운로드 및 설치

https://learn.microsoft.com/ko-kr/windows-hardware/get-started/adk-install#other-adk-downloads

 

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

 

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

donaricano-btn

반응형
반응형

깡통 윈도우 통합 ISO 파일에 무인설치 응답파일(AutoUnattend.xml)과 디스크 파티션 과정, 여러 설정 옵션을 포함 하고 프로비저닝(Provisioning) 패키지를 이용하여 응용 프로그램까지 설치 하는 과정을 녹화해 보았습니다. 다수의 PC에 선택적인 반복 작업을 하시는 분에게 유용한 정보가 될 듯합니다.

프로비저닝(Provisioning) 관련 URL

■ Windows Configuration Designer: Provisioning software using PowerShell
https://www.youtube.com/watch?v=TGojza4RJHA&ab_channel=Let%27sdoautomation
■ Windows Configuration Designer: Configuring WiFi connection
https://www.youtube.com/watch?v=S2ysvv4KvRY&ab_channel=Let%27sdoautomation
■ windows-configuration-designer
https://github.com/letsdoautomation/windows-configuration-designer/tree/main/Provisioning%20software%20using%20PowerShell
■ Windows ADK 다운로드 및 설치
https://learn.microsoft.com/ko-kr/windows-hardware/get-started/adk-install

■ Windows ADK 윈도우 버전별 다운로드 및 설치

https://learn.microsoft.com/ko-kr/windows-hardware/get-started/adk-install#other-adk-downloads

 

 

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

 

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

donaricano-btn

반응형
반응형

EasyWinSetup 드라이버 자동 설치 옵션을 추가 하여 윈도우10에서 윈도우11 자동 설치 과정을 녹화해 보았습니다. 참고하여 원격 설치에 활용하면 좋은 방안이 될 것 같습니다.

set "driveLetter="
set "ImageFile="
set "OemPath="
set "XmlFile="
set "DriversPath="
set "EasyWinSetup="

rem 드라이브 목록에서 "sources" 폴더 확인
for %%D in (A B C D E F G H I J K L M N O P Q R S T U V W) do (
    if exist "%%D:\sources" (
        set "driveLetter=%%D"
        if exist "%%D:\sources\install.wim" (
            set "ImageFile=/ImageFile:%%D:\sources\install.wim"
        ) else if exist "%%D:\sources\install.esd" (
            set "ImageFile=/ImageFile:%%D:\sources\install.esd"
        )
        set "OemPath=/OemPath:%%D:\sources\$OEM$"
		set "XmlFile=/XmlFile:%%D:\sources\$OEM$\$$\Panther\unattend.xml"
		set "DriversPath=/DriversPath:%%D:\sources\AutoInstall\Drivers"
		set "EasyWinSetup=%%D:\sources\AutoInstall\EWS_x64.exe"
        goto :FoundDrive
    )
)

:FoundDrive
if not "%driveLetter%"=="" (
    echo. "sources" 폴더를 찾은 드라이브: %driveLetter%
    echo. EasyWinSetupGPT 자동 설치 옵션 설정 중...
    %EasyWinSetup% /ApplyStart %ImageFile% /Index:2 /ApplyDrv:C: %OemPath% %XmlFile% %DriversPath% /after:Reboot /d
) else (
    echo. "sources" 폴더를 찾은 드라이브가 없습니다.
)

 

[실사] 윈도우 UEFI or Legacy 자동 설치 | WinNTSetup vs EasyWinSetup
https://youtu.be/YXJ7X9hdS5k?si=e3MgJ_jmP89L3R7H
[실사] 윈도우 11&10 자동설치 Boot.wim PE / WinNTSetup & EasyWinSetup 활용
https://youtu.be/cvp7hbc1Hbg?si=mPkcHg0TFshd4i53
DISM 활용 윈도우 11&10 무인설치 / 런처바(LaunchBar) 추가 XCOPY
https://youtu.be/BgjX6nj6JHY?si=CAvKdFYcu-1oBlZj
[실사] DiskPart 자동 스크립트 활용 윈도우 설치 응용 | WinNTSetup vs EasyWinSetup
https://youtu.be/3VUQEuR-rxs?si=49foUiv8cLCOLRPM
[실사] 윈도우11&10 원격 대응 무인설치 - WinNTSetup
https://youtu.be/RqXUKVoq9Ms?si=O890sKfTr0AhXSKE

 

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

 

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

donaricano-btn

반응형

+ Recent posts