๐ฅ๏ธ Deploying a Windows Image to a Physical Workstation via netboot.xyz and Windows PE
This guide explains how to deploy a captured Windows image to a physical workstation using the netboot.xyz PXE service to boot into Windows PE, then apply the image using DISM. The image is stored in a network share on the ELDERBRAIN hypervisor at Ridgebrook.
1. ๐ Boot the Physical Workstation via PXE (netboot.xyz)
Requirements:
- The physical machine supports UEFI PXE boot
- The network allows access to
boot.netboot.xyz
- The system has a clean or blank disk attached
Steps:
- Power on the physical workstation.
- Enter BIOS/UEFI and ensure PXE boot is enabled (UEFI preferred).
- Set PXE (network boot) as the first boot device.
- Reboot โ the system should fetch
netboot.xyz
via DHCP and TFTP. - In the
netboot.xyz
boot menu:- Navigate to:
Utilities
โWindows
โWindows PE
- Select architecture: e.g.,
amd64
- Navigate to:
โ This will load Windows PE into memory via cloud boot.
2. ๐ Connect to the Ridgebrook Image Share
Image Location:
\\elderbrain\images\ridgebrook-industrial\wim\windows.wim
In Windows PE:
- Press
Shift+F10
to open Command Prompt. - Map the file share:
net use Y: \\elderbrain\images\ridgebrook-industrial\wim /user:DOMAIN\username password
โ You should now have access to
Z:\windows.wim
3. ๐งน Prepare the Workstation Disk
Format and initialize the target drive:
list disk
select disk 0
clean
convert gpt
create partition efi size=4096
format quick fs=fat32 label="System"
assign letter=S
create partition primary size=4096
format quick fs=ntfs label="Recovery"
set id=de94bba4-06d1-4d40-a16a-bfd50179d6ac
gpt attributes=0x8000000000000001
create partition primary
format quick fs=ntfs label="Windows"
assign letter=C
exit
4. ๐ฆ Apply the Captured Windows Image Using DISM
Apply the .wim
captured image to the C drive:
dism /Apply-Image /ImageFile:Y:\windows.wim /Index:1 /ApplyDir:C:\
๐ก Make sure the index is correct if the
.wim
contains multiple images.
5. ๐ฅพ Make the Workstation Bootable
bcdboot C:\Windows /s S: /f UEFI
๐ง If using a dedicated EFI partition, update
/s
accordingly.
โ Final Notes
- After deployment, shut down the workstation.
- Remove PXE boot from the first boot device.
- The workstation will now boot into Windows.
- Optionally, run
sysprep
before capture to generalize the image.
Let me know if you'd like to bundle this with your VM deployment guide for a unified imaging SOP.
No comments to display
No comments to display