How create image capture?

Drthrax74

New Member
Messages
2
Reaction score
0
Hello,

Can your help me for create capture image with iso windows 10.

I don't take Windows with a role WDS .

Poweriso / Nlite / DISM
 
Last edited:
To capture an image, you follow the normal sysprep instructions you find online.

After you finish a DISM capture, the WIM file can be copied to an extracted ISO folder, replacing the original install.wim with your file. Then it can used like a normal image with NTLite.
 
Hello,
I found of fix to my problem. I was used SYSPREP / WinPE for Capture.

I will try deploy custom windows !

I think this would be a good tutorial for capturing Windows!


Solution:
- Install software
- Windows Preinstallation Environment (3.6 Go)
- Windows Automated Installation Kit (Deployments tools only - 500 Mo)

:: Start command line
C:\Windows\system32\cmd.exe /k "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Deployment Tools\DandISetEnv.bat"

:: Set Variable
set DOSSIER=C:\WinPE
set PACKAGE_FR="C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\fr-fr\lp.cab"

:: Generate WinPE (folder)
copype %PROCESSOR_ARCHITECTURE% %DOSSIER%


:: Mount Index 1
Dism /Mount-Image /ImageFile:"%DOSSIER%\media\sources\boot.wim" /index:1 /MountDir:"%DOSSIER%\mount"

:: Add package Fr-FR
Dism /Add-Package /Image:"%DOSSIER%\mount" /PackagePath:%PACKAGE_FR%

:: Apply French
Dism /Set-AllIntl:fr-fr /Image:"%DOSSIER%\mount"

:: Umount with Apply edit
Dism /Unmount-Image /MountDir:"%DOSSIER%\mount" /commit

:: Generate ISO
MakeWinPEMedia /ISO %DOSSIER% %DOSSIER%\WinPE_%PROCESSOR_ARCHITECTURE%.iso

Capture
- Mount ISO Windows
- Boot windows
- Install WIndows on Disk
- Post install, i press CTRL right + SHIFT + F10 for go mode Audit
- Custom OS
- Launch Sysprep : C:\Windows\System32\Sysprep\sysprep.exe /generalize /oobe /shutdow

- Mount ISO WINPE
- MAJ RIGHT + F10 : Start CMD
- diskpart
> list volume
> exit
>> My volume who is get Windows is C

Local Capture : Dism /Capture-Image /ImageFile:D:\Windows.wim /CaptureDir:C:\ /Name:"Windows 10 Custom"
Share Capture : net use N: \\X.X.X.X\PARTAGE /user:<MONUSER>
: Dism /Capture-Image /ImageFile:N:\Windows.wim /CaptureDir:C:\ /Name:"Windows 10 Custom"

Deployment: (Not tested)
- Poweriso for edit Windows.iso
- Delete .\Sources\install.wim | .\Sources\install.esd
- Rename Windows.wim to install.wim
- Insert my install.wim to image
- Save Image
- Try install
 
Last edited:
Back
Top