> 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/osdcloud/invoke-winpestartupmanager.md).

# Invoke-WinPEStartupManager

Invokes a WinPE startup utility action by Id.

| Property | Value                              |
| -------- | ---------------------------------- |
| Module   | OSDCloud                           |
| Platform | WinPE only                         |
| Requires | OSDCloud module, WinPE environment |

{% hint style="info" %}
This function is called internally by `Invoke-WinPEStartup` to dispatch individual startup actions. It can also be called directly to run a specific startup action on demand.
{% endhint %}

## Description

Routes WinPE startup actions to the corresponding helper command by action Id. Supported actions include on-screen keyboard handling, PnP hardware and error display, network utilities, and module update operations.

## Syntax

```powershell
Invoke-WinPEStartupManager [-Id] <String> [[-Value] <String>]
```

## Parameters

| Parameter | Type     | Required | Description                                                                                                                      |
| --------- | -------- | -------- | -------------------------------------------------------------------------------------------------------------------------------- |
| `-Id`     | `String` | Yes      | The startup action to invoke. Valid values: `OSK`, `DeviceErrors`, `DeviceHardware`, `Info`, `IPConfig`, `UpdateModule`, `WiFi`. |
| `-Value`  | `String` | No       | Optional value used by specific actions. For `UpdateModule`, set this to the module name to install or update.                   |

## Examples

```powershell
# Launch on-screen keyboard if no physical keyboard is detected
Invoke-WinPEStartupManager -Id OSK
```

```powershell
# Display non-OK PnP device status
Invoke-WinPEStartupManager -Id DeviceErrors
```

```powershell
# Display PnP device hardware details
Invoke-WinPEStartupManager -Id DeviceHardware
```

```powershell
# Show comprehensive device information
Invoke-WinPEStartupManager -Id Info
```

```powershell
# Launch IPConfig in a minimized window
Invoke-WinPEStartupManager -Id IPConfig
```

```powershell
# Start the Wi-Fi connection workflow
Invoke-WinPEStartupManager -Id WiFi
```

```powershell
# Update the OSDCloud module
Invoke-WinPEStartupManager -Id UpdateModule -Value OSDCloud
```


---

# 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/osdcloud/invoke-winpestartupmanager.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.
