> For the complete documentation index, see [llms.txt](https://www.osdeploy.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://www.osdeploy.com/command-reference/osdeploy/update-osdeploybootiso.md).

# Update-OSDeployBootISO

Rebuilds the bootable ISO files for a selected OSDeployCore BootImage build.

| Property | Value                                                                                   |
| -------- | --------------------------------------------------------------------------------------- |
| Module   | OSDeploy                                                                                |
| Platform | Windows 11 25H2 build 26200 or later (amd64 / arm64)                                    |
| Requires | Valid license, Run as Administrator, Windows ADK installed, a completed BootImage build |

## Description

Regenerates the ISO files (`bootmedia.iso` and optionally `bootmedia_ca2023.iso`) for a selected completed BootImage from `%ProgramData%\OSDeployCore\boot`. The existing `bootmedia` directory content is used as-is — no DISM mount or WIM modification is performed.

The function:

* Prompts for selection of a completed BootImage build
* Verifies the Windows ADK is installed
* Uses the installed ADK's `oscdimg.exe` to rebuild the ISO(s)
* Places the resulting ISOs in the BootImage's root directory

Use this function when you need to regenerate an ISO from existing bootmedia files without rebuilding the entire WinPE image. Use `Build-OSDeployBoot` to perform a full rebuild.

## Syntax

```powershell
Update-OSDeployBootISO [-WhatIf] [-Confirm]
```

## Parameters

The BootImage selection is made with an interactive `Out-GridView` picker.

| Parameter  | Type     | Required | Description                                   |
| ---------- | -------- | -------- | --------------------------------------------- |
| `-WhatIf`  | `Switch` | No       | Preview ISO creation after selecting a build. |
| `-Confirm` | `Switch` | No       | Confirm each ISO creation operation.          |

## Examples

```powershell
# Prompt for a BootImage build selection and rebuild its ISO files
Update-OSDeployBootISO
```


---

# 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://www.osdeploy.com/command-reference/osdeploy/update-osdeploybootiso.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.
