Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

rundll32: fix documentation and add more detail #8026

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 18 additions & 6 deletions WindowsServerDocs/administration/windows-commands/rundll32.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,26 +11,38 @@ ms.date: 10/16/2017

# rundll32

Loads and runs 32-bit dynamic-link libraries (DLLs). There are no configurable settings for Rundll32. Help information is provided for a specific DLL you run with the **rundll32** command.

You must run the **rundll32** command from an elevated command prompt. To open an elevated command prompt, click **Start**, right-click **Command Prompt**, and then click **Run as administrator**.
Loads and runs procedures from dynamic-link libraries (DLLs) conforming to a specific interface (see remarks).

## Syntax

```
rundll32 <DLLname>
rundll32 <dllName>,<procedureName> [<arguments>[ ...]]
```

### Parameters

| Parameter | Description |
|--|--|
| [Rundll32 printui.dll,PrintUIEntry](rundll32-printui.md) | Displays the printer user interface. |
| `<dllName>` | The DLL from which to run the procedure from. |
| `<procedureName>` | The name of the procedure to run. |
| `<arguments>` | Parameters to pass into the procedure `lpCmdLine`. |

### Example

```
rundll32 devmgr,DeviceProperties_RunDLL /DeviceID root\system\0000
```

## Remarks

Rundll32 can only call functions from a DLL explicitly written to be called by Rundll32.
Rundll32 assumes the procedure has an interface conforming with the [WinMain entry point](/windows/win32/learnwin32/winmain--the-application-entry-point).

The ```,``` separator between the DLL name and the procedure can alternatively be a space (" ").

The ```procedureName``` can also alternatively be an ordinal, e.g. (```#2```) for ordinal 2.

## Related links

- [Command-Line Syntax Key](command-line-syntax-key.md)
- [Rundll32 printui.dll,PrintUIEntry](rundll32-printui.md)
- [DeviceProperties_RunDLL](/windows-hardware/drivers/install/deviceproperties-rundll-function-prototype)