> 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/powershell-modules/osdeploy/update-osdeploycore.md).

# Update-OSDeployCore

Updates all OSDeployCore assets: Windows Enterprise ESD files, OS images, and WinPE driver packages.

| Property | Value                                                 |
| -------- | ----------------------------------------------------- |
| Module   | OSDeploy                                              |
| Platform | Windows 11 (amd64 / arm64)                            |
| Requires | PowerShell 7.6, Run as Administrator, internet access |

## Description

Runs `Update-OSDeployCoreESD`, `Update-OSDeployCoreOS`, and `Update-OSDeployCoreDrivers` in a single call to refresh all local OSDeployCore assets.

Use this function to bring a new build machine up to date or to ensure all cached content is current before running `Build-OSDeployBoot`.

## Syntax

```powershell
Update-OSDeployCore [-Force] [-WhatIf] [-Confirm]
```

## Parameters

| Parameter  | Type     | Required | Description                                                                                                                            |
| ---------- | -------- | -------- | -------------------------------------------------------------------------------------------------------------------------------------- |
| `-Force`   | `Switch` | No       | Passes `-Force` to `Update-OSDeployCoreESD` and `Update-OSDeployCoreDrivers`, re-downloading all files even when a cached copy exists. |
| `-WhatIf`  | `Switch` | No       | Shows what each sub-function would do without performing any downloads.                                                                |
| `-Confirm` | `Switch` | No       | Prompts for confirmation before running.                                                                                               |

## Examples

```powershell
# Download any missing ESD files, OS images, and WinPE driver packages
Update-OSDeployCore
```

```powershell
# Re-download all assets regardless of what is already cached
Update-OSDeployCore -Force
```

```powershell
# Preview what would be downloaded without executing
Update-OSDeployCore -WhatIf
```


---

# 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:

```
GET https://www.osdeploy.com/powershell-modules/osdeploy/update-osdeploycore.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
