Skip to content

Latest commit

 

History

History
38 lines (20 loc) · 784 Bytes

File metadata and controls

38 lines (20 loc) · 784 Bytes
description Description of 'disable_event' function in HyperDbg Scripts

disable_event

Function

disable_event

Syntax

disable_event( EventId );

Parameters

[Expression (EventId)]

     Event ID of the event that needs to be deactivated.

Description

Disables an event by its Event ID.

Examples

disable_event(1);

Disable an event with EventId = 1.

Remarks

You can see events' ID using the event command. The first column of this command's results shows the event ID.

Related

enable_event