Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Copy the USB Boot media files (USB.zip) from the WPaaS Dropbox Folder to a computer running Windows 10.
  2. Extract the boot media file.
  3. Insert the USB thumb drive to a USB port on the Windows 10 computer.
  4. Open a command prompt as administrator on the Windows 10 computer, and type the command DISKPART.EXE to start the DiskPart command-line interface.
  5. At the DISKPART prompt type LIST DISK to determine the disk associated with the USB thumb drive.
  6. 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:
    1. SELECT DISK 1
    2. CLEAN
    3. CREATE PARTITION PRIMARY
    4. SELECT PARTITION 1
    5. ACTIVE
    6. FORMAT FS=FAT32 QUICK
    7. ASSIGN
    8. EXIT
  7. Copy the files extracted in Step 2 to the USB thumb drive.

...