...
- Copy the USB Boot media files (USB.zip) from the WPaaS Dropbox Folder to a computer running Windows 10.
- Extract the boot media file.
- Insert the USB thumb drive to a USB port on the Windows 10 computer.
- Open a command prompt as administrator on the Windows 10 computer, and type the command DISKPART.EXE to start the DiskPart command-line interface.
- At the DISKPART prompt type LIST DISK to determine the disk associated with the USB thumb drive.
- In the example steps below, my internal hard drive is Disk 0 and USB thumb drive is Disk 1. Run these commands at the DISKPART prompt to prepare Disk 1 to be a bootable drive:
- SELECT DISK 1
- CLEAN
- CREATE PARTITION PRIMARY
- SELECT PARTITION 1
- ACTIVE
- FORMAT FS=FAT32 QUICK
- ASSIGN
- EXIT
- Copy the files extracted in Step 2 to the USB thumb drive.
...