> For the complete documentation index, see [llms.txt](https://tools.thehacker.recipes/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://tools.thehacker.recipes/mimikatz/modules/process/resume.md).

# resume

`process::resume` resumes a suspended process by using the [NtResumeProcess](https://www.geoffchappell.com/studies/windows/win32/ntdll/api/native.htm) Windows Native API function. It has the following command line arguments:

* positional argument: the name of the process to resume
* `/pid`: the PID of the process

In the following example, the `/pid` of `notepad.exe` is `9212`*.*

```
C:\WINDOWS\system32>tasklist /v | findstr notepad
notepad.exe                   9212 RDP-Tcp#4                  4     15,400 K Running         hacklab\m3g9tr0n                                        0:00:00 Untitled - Notepad
```

```
mimikatz # process::resume notepad /pid:9212
NtResumeProcess of 9212 PID : OK !
```
