Skip to content

Latest commit

 

History

History
55 lines (30 loc) · 1.56 KB

.restart.md

File metadata and controls

55 lines (30 loc) · 1.56 KB
description
Description of the '.restart' command in HyperDbg.

.restart (restart the process)

Command

.restart

Syntax

.restart

Description

Restarts a program (the previously started program using the '.start' command) with the specific parameters and breaks when the PE file reaches the entrypoint.

Parameters

None

Examples

Imagine we want to restart a program that we previously started using the '.start' command.

0: kHyperDbg> .restart 

IOCTL

The IOCTL description is the same as the '.start' command.

Remarks

This command cannot be used simultaneously with the '!mode' command.

This command will continue the debuggee for some time (in Debugger Mode). This means that you lose the current context (registers & memory) after executing this command.

Requirements

None

Related

.start (start a new process)

.attach (attach to a process)

.detach (detach from the process)

.switch (show the list and switch between active debugging threads)

.kill (terminate the process)