> 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/osd/get-featureupdate.md).

# Get-FeatureUpdate

Returns the latest matching Windows client feature update record.

| Property | Value                 |
| -------- | --------------------- |
| Module   | OSD                   |
| Platform | WinPE (amd64 / arm64) |

## Description

Queries OSDCloud operating system metadata and filters by language, activation, architecture, and either a named OS target or version/release criteria. Returns the newest matching feature update object.

## Syntax

```powershell
Get-FeatureUpdate [[-OSName] <String>] [[-OSActivation] <String>] [[-OSArchitecture] <String>]
 [[-OSLanguage] <String>] [[-OSReleaseID] <String>] [[-OSVersion] <String>]
 [-ProgressAction <ActionPreference>] [<CommonParameters>]
```

## Parameters

| Parameter         | Type     | Required | Description                                                                                                                              |
| ----------------- | -------- | -------- | ---------------------------------------------------------------------------------------------------------------------------------------- |
| `-OSName`         | `String` | False    | Friendly OS target name used to select a specific version, release, and architecture profile. Defaults to Windows 11 25H2 amd64.         |
| `-OSActivation`   | `String` | False    | Activation channel to filter on. Valid values are Retail and Volume.                                                                     |
| `-OSArchitecture` | `String` | False    | Processor architecture to filter on. Valid values are x64, amd64, and arm64.                                                             |
| `-OSLanguage`     | `String` | False    | Language tag used to filter operating system content. Defaults to en-us.                                                                 |
| `-OSReleaseID`    | `String` | False    | Feature update release identifier used with OSVersion for legacy version/release filtering. Examples include 25H2, 24H2, 23H2, and 22H2. |
| `-OSVersion`      | `String` | False    | Operating system family used with OSReleaseID for legacy version/release filtering. Valid values are Windows 11 and Windows 10.          |

## Examples

### Example

```powershell
Get-FeatureUpdate
Returns the latest feature update using default filters.
```

### Example

```powershell
Get-FeatureUpdate -OSName 'Windows 11 24H2 arm64' -OSLanguage 'en-us' -OSActivation Volume
Returns the latest matching arm64 Windows 11 24H2 volume feature update.
```

## Related

* <https://github.com/OSDeploy/OSD/tree/master/docs>


---

# 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/powershell-modules/osd/get-featureupdate.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.
