> For the complete documentation index, see [llms.txt](https://documentation.2pintsoftware.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://documentation.2pintsoftware.com/deployr/getting-started/generate-windows-pe-boot-images/generating-usb-flash-media.md).

# Generating USB Flash Media

Create bootable DeployR USB media from the generated WinPE ISO.

### Before you begin

You need:

* A USB flash drive.
* Access to the DeployR Content `Boot` folder.
* The `DeployR_x64_noprompt.iso` file from that folder.

{% hint style="danger" %}
This process permanently erases the selected USB drive. Confirm the disk number and size before running `clean`.
{% endhint %}

### Prepare the flash drive

1. Insert the USB flash drive.
2. Open PowerShell or Command Prompt as an administrator.
3. Start DiskPart:

```
diskpart
```

4. List the available disks:

```
list disk
```

5. Select the USB drive. Replace `1` with the correct disk number.

```
select disk 1
```

6. Clean, partition, format, and assign the drive:

```
clean
create partition primary
select partition 1
format fs=fat32 quick LABEL="DeployR"
assign
exit
```

The flash drive is ready for the WinPE media.

<figure><img src="https://922011620-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F5H9jaYPEartpXiTyVZvm%2Fuploads%2Fc3ekZr7CnWE9n8vXjX8J%2Fimage.png?alt=media&amp;token=d5cb5319-9b23-4283-ab80-43230ef1225a" alt="DiskPart commands used to prepare the DeployR USB flash drive"><figcaption><p>Prepare the USB flash drive with DiskPart.</p></figcaption></figure>

### Copy the DeployR WinPE media

1. Open the DeployR Content `Boot` folder.
2. Locate `DeployR_x64_noprompt.iso`.
3. Mount or extract the ISO file.
4. Copy its contents to the root of the prepared flash drive.

In this example, the ISO is mounted as `D:`. Its contents are copied to USB drive `E:`.

<figure><img src="https://922011620-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F5H9jaYPEartpXiTyVZvm%2Fuploads%2FIjajOWGRO4TzCdHeRhHQ%2Fimage.png?alt=media&amp;token=1f6201c6-63fa-48e0-bca4-3596c24486b5" alt="Contents of the mounted DeployR ISO copied to a USB flash drive"><figcaption><p>Copy every file and folder from the mounted ISO.</p></figcaption></figure>

Keep the ISO folder structure intact. Do not copy the ISO file itself. The flash drive must contain the extracted boot files.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://documentation.2pintsoftware.com/deployr/getting-started/generate-windows-pe-boot-images/generating-usb-flash-media.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
