Create Windows Install USB Drive
Darien's Tips Darien's Tips
288 subscribers
472 views
0

 Published On May 4, 2024

In this video, we will cover the steps to create a bootable Windows USB device that will boot into either a UEFI or BIOS-based system, including those with Secure Boot enabled. This process uses native Windows tools; no third-party tools or applications are necessary.

Applies to:

Windows 7, Windows 8, Windows 8.1, Windows 10, Windows 11, Windows Server 2008 R2, Windows Server 2012, Windows Server 2012 R2, Windows Server 2016, Windows Server 2019, Windows Server 2022, Windows Server 2025

Glossary:

BIOS = Basic Input/Output System
DISM = Deployment Image Servicing and Management
FAT32 = File Allocation Table 32-bit
ISO = International Organization for Standardization
NTFS = New Technology File System
UEFI = Unified Extensible Firmware Interface
USB = Universal Serial Bus
WIM = Windows Imaging Format

Commands:

Dism /Split-Image /ImageFile:[source]\sources\install.wim /SWMFile:[destination]\sources\install.swm /FileSize:3800

Get-Disk
Get-Disk -Number [n] | Clear-Disk -RemoveData
Get-Disk -Number [n] | Initialize-Disk -PartitionStyle MBR
Get-Disk -Number [n] | New-Partition -Size 16GB
Get-Partition -DiskNumber [n] -PartitionNumber 1 | Format-Volume -FileSystem FAT32
Set-Partition -DiskNumber [n] -PartitionNumber 1 -IsActive $true
Set-Partition -DiskNumber [n] -PartitionNumber 1 -NewDriveLetter N
Robocopy.exe [source path] [destination path] * /e

Chapters

0:00 Introduction
1:10 Obtain Windows Media
1:59 Extract ISO Contents
3:24 Prepare USB Drive
4:42 Reclaim Unallocated Space
5:34 Thank You for watching

Links:
• https://www.microsoft.com/software-do...
• https://www.microsoft.com/en-us/evalc...
• https://my.visualstudio.com/Downloads...
• https://www.microsoft.com/en-us/windo...
• https://learn.microsoft.com/en-us/win...
• https://learn.microsoft.com/en-us/win...
• https://learn.microsoft.com/en-us/win...
• https://learn.microsoft.com/en-us/win...
• https://learn.microsoft.com/en-us/win...

show more

Share/Embed