Werk Leeuwarden twee
Windows 11 Pro
- Windows 11 ISO https://www.microsoft.com/nl-nl/software-download/windows11
- Dell Pro Laptops PB16250 Dell Pro 16 Plus https://www.dell.com/support/kbdoc/en-us/000272637/dell-pro-laptops-pb16250-windows-11-driver-pack
- Folder2iso https://www.folder2iso.com/
- https://rufus.ie/nl/
- Windows ADK https://learn.microsoft.com/en-us/windows-hardware/get-started/adk-install https://go.microsoft.com/fwlink/?linkid=2337875
- Download the ADK 10.1.28000.1 (November 2025) https://go.microsoft.com/fwlink/?linkid=2337681
- Download the Windows PE add-on for the ADK 10.1.28000.1 (November 2025)
ISO maker (Folder2iso)
- Folder2iso https://www.folder2iso.com/
- Filesystem 9660+ UDF 1.02 (DVD)
Drivers
- Intel Rapid Storage Technology (driver en applicatie) https://www.dell.com/support/product-details/nl-nl/product/dell-pro-pb16250-laptop/drivers
- https://www.dell.com/support/kbdoc/en-us/000272637/dell-pro-laptops-pb16250-windows-11-driver-pack
Boot.wim
- Index: 1 Winpe drivers and network drivers
- Index: 2 Winpe drivers and network drivers
- DELL16250\PB16250\Win11\x64\network”
Install.wim
- Index 1 Winpe drivers and network drivers
DISM
Check and delete index:1 in install.wim (Windows 11 Pro, Windows 11 Pro educations etc etc)
Theres a full list of Windows version and you can delete the versions that you don’t need. This is only for install.wim
dism /Get-WimInfo /Wimfile:C:\Users\Administrator\Documents\W11ProNL2\sources\install.wim
dism /Delete-Image /Imagefile:C:\Users\Administrator\Documents\W11ProNL2\sources\install.wim /Index:2
Mount boot.wim and install.wim (For injecting drivers and updates)
Boot.wim mount
- You have two indexes, both are needed
- Folder names are need for mounting boot.wim and install.wim
- In this example WINDOWSBOOT is the mount folder for boot.wim
dism /Mount-Image /ImageFile:C:\Users\Administrator\Documents\W11ProNL2\sources\boot.wim /Index:1 /MountDir:C:\Users\Administrator\Documents\WINDOWSBOOT
Install.wim mount
You deleted all the other index, and now you have only one (In this case Windows 11 Pro)
dism /Mount-Image /ImageFile:C:\Users\Administrator\Documents\W11ProNL2\sources\install.wim /Index:1 /MountDir:C:\Users\Administrator\Documents\WINDOWS
Add drivers
dism /Image:"C:\Users\Administrator\Documents\WINDOWSBOOT" /Add-Driver /Driver:"D:\Imported_drivers_BOOT" /Recurse /ForceUnsigned
Unmount and commit
dism /Image:"C:\Users\Administrator\Documents\WINDOWSBOOT" /Add-Driver /Driver:"D:\Imported_drivers_BOOT" /Recurse /ForceUnsigned
Example autounattend.xml
<?xml version="1.0" encoding="utf-8"?>
<unattend xmlns="urn:schemas-microsoft-com:unattend" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State">
<!--https://schneegans.de/windows/unattend-generator/?LanguageMode=Unattended&UILanguage=nl-NL&Locale=en-US&Keyboard=00000409&GeoLocation=176&ProcessorArchitecture=amd64&KeepSensitiveFiles=true&ComputerNameMode=Random&CompactOsMode=Never&TimeZoneMode=Implicit&PartitionMode=Unattended&PartitionLayout=GPT&EspSize=300&RecoveryMode=Partition&RecoverySize=1000&DiskAssertionMode=Skip&WindowsEditionMode=Firmware&InstallFromMode=Index&InstallFromIndex=1&PEMode=Default&UserAccountMode=Interactive&PasswordExpirationMode=Default&LockoutMode=Default&HideFiles=Hidden&TaskbarSearch=Box&TaskbarIconsMode=Default&StartTilesMode=Default&StartPinsMode=Default&EffectsMode=Default&DesktopIconsMode=Default&StartFoldersMode=Default&WifiMode=Interactive&ExpressSettings=Interactive&LockKeysMode=Skip&StickyKeysMode=Default&ColorMode=Default&WallpaperMode=Default&LockScreenMode=Default&WdacMode=Skip&AppLockerMode=Skip-->
<settings pass="offlineServicing"></settings>
<settings pass="windowsPE">
<component name="Microsoft-Windows-International-Core-WinPE" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
<UILanguage>nl-NL</UILanguage>
</component>
<component name="Microsoft-Windows-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
<ImageInstall>
<OSImage>
<Compact>false</Compact>
<InstallFrom>
<MetaData wcm:action="add">
<Key>/IMAGE/INDEX</Key>
<Value>1</Value>
</MetaData>
</InstallFrom>
<InstallTo>
<DiskID>0</DiskID>
<PartitionID>3</PartitionID>
</InstallTo>
</OSImage>
</ImageInstall>
<UserData>
<ProductKey>
<WillShowUI>Never</WillShowUI>
</ProductKey>
<AcceptEula>true</AcceptEula>
</UserData>
<UseConfigurationSet>false</UseConfigurationSet>
<RunSynchronous>
<RunSynchronousCommand wcm:action="add">
<Order>1</Order>
<Path>cmd.exe /c >>X:\diskpart.txt (echo:SELECT DISK=0&echo:CLEAN&echo:CONVERT GPT&echo:CREATE PARTITION EFI SIZE=300&echo:FORMAT QUICK FS=FAT32 LABEL=^"System^"&echo:ASSIGN LETTER=S&echo:CREATE PARTITION MSR SIZE=16&echo:CREATE PARTITION PRIMARY)</Path>
</RunSynchronousCommand>
<RunSynchronousCommand wcm:action="add">
<Order>2</Order>
<Path>cmd.exe /c >>X:\diskpart.txt (echo:SHRINK MINIMUM=1000&echo:FORMAT QUICK FS=NTFS LABEL=^"Windows^"&echo:ASSIGN LETTER=W&echo:CREATE PARTITION PRIMARY&echo:FORMAT QUICK FS=NTFS LABEL=^"Recovery^"&echo:ASSIGN LETTER=R)</Path>
</RunSynchronousCommand>
<RunSynchronousCommand wcm:action="add">
<Order>3</Order>
<Path>cmd.exe /c >>X:\diskpart.txt (echo:SET ID=^"de94bba4-06d1-4d40-a16a-bfd50179d6ac^"&echo:GPT ATTRIBUTES=0x8000000000000001)</Path>
</RunSynchronousCommand>
<RunSynchronousCommand wcm:action="add">
<Order>4</Order>
<Path>cmd.exe /c "diskpart.exe /s "X:\diskpart.txt" >>"X:\diskpart.log" || ( type "X:\diskpart.log" & echo diskpart encountered an error. & pause & exit /b 1 )"</Path>
</RunSynchronousCommand>
</RunSynchronous>
</component>
</settings>
<settings pass="generalize"></settings>
<settings pass="auditSystem"></settings>
<settings pass="auditUser"></settings>
<settings pass="oobeSystem">
<component name="Microsoft-Windows-International-Core" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
<InputLocale>0409:00000409</InputLocale>
<SystemLocale>en-US</SystemLocale>
<UILanguage>nl-NL</UILanguage>
<UserLocale>en-US</UserLocale>
</component>
<component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
<OOBE>
<HideEULAPage>true</HideEULAPage>
<HideWirelessSetupInOOBE>false</HideWirelessSetupInOOBE>
<HideOnlineAccountScreens>false</HideOnlineAccountScreens>
</OOBE>
</component>
</settings>
<Extensions xmlns="https://schneegans.de/windows/unattend-generator/">
<Build>
<Commit>
<Hash>b5944ad0b8d26588e78d963562e0f80ee2e33aeb</Hash>
<GitHubUrl>https://github.com/cschneegans/unattend-generator/commit/b5944ad0b8d26588e78d963562e0f80ee2e33aeb</GitHubUrl>
</Commit>
</Build>
</Extensions>
</unattend>