| |
REG_CE_NONE | 0 | Don't fire for any registry operations.
Control Events will not fire for any registry operations.
|
REG_CE_BEFORE_CREATE_KEY | 0x00000001L | Fire before registry key creation operations.
The BeforeCreateKey event will fire anytime the OS attempts to create a registry key.
|
REG_CE_AFTER_CREATE_KEY | 0x00000002L | Fire after registry key creation operations.
The AfterCreateKey event will fire after a registry key creation request has been processed, before the response is returned.
|
REG_CE_BEFORE_OPEN_KEY | 0x00000004L | Fire before registry key open operations.
The BeforeOpenKey event will fire anytime the OS attempts to open a registry key.
|
REG_CE_AFTER_OPEN_KEY | 0x00000008L | Fire after registry key open operations.
The AfterOpenKey event will fire after a registry key open request has been processed, before the response is returned.
|
REG_CE_BEFORE_CLOSE_KEY | 0x00000010L | Fire before registry key close operations.
The BeforeCloseKey event will fire anytime the OS closes a registry key.
|
REG_CE_AFTER_CLOSE_KEY | 0x00000020L | Fire after registry key close operations.
The AfterCloseKey event will fire after a registry key close request has been processed, before the response is returned.
|
REG_CE_BEFORE_DELETE_KEY | 0x00000040L | Fire before registry key delete operations.
The BeforeDeleteKey event will fire anytime the OS attempts to delete a registry key.
|
REG_CE_AFTER_DELETE_KEY | 0x00000080L | Fire after registry key delete operations.
The AfterDeleteKey event will fire after a registry key delete request has been processed, before the response is returned.
|
REG_CE_BEFORE_RENAME_KEY | 0x00000100L | Fire before registry key rename operations.
The BeforeRenameKey event will fire anytime the OS attempts to rename a registry key.
|
REG_CE_AFTER_RENAME_KEY | 0x00000200L | Fire after registry key rename operations.
The AfterRenameKey event will fire after a registry key rename request has been processed, before the response is returned.
|
REG_CE_BEFORE_ENUM_KEY | 0x00000400L | Fire before subkey enumeration operations.
The BeforeEnumerateKey event will fire anytime the OS attempts to enumerate a registry key's subkeys.
|
REG_CE_AFTER_ENUM_KEY | 0x00000800L | Fire after subkey enumeration operations.
The AfterEnumerateKey event will fire after a subkey enumeration request has been processed, before the response is returned.
|
REG_CE_BEFORE_QUERY_KEY | 0x00001000L | Fire before registry key metadata retrieval operations.
The BeforeQueryKey event will fire anytime the OS attempts to retrieve a registry key's metadata.
|
REG_CE_AFTER_QUERY_KEY | 0x00002000L | Fire after registry key metadata retrieval operations.
The AfterQueryKey event will fire after a registry key metadata retrieval request has been processed, before the response is returned.
|
REG_CE_BEFORE_SET_KEY | 0x00004000L | Fire before registry key metadata update operations.
The BeforeSetKey event will fire anytime the OS attempts to a registry key's metadata.
|
REG_CE_AFTER_SET_KEY | 0x00008000L | Fire after registry key metadata update operations.
The AfterSetKey event will fire after a registry key metadata update request has been processed, before the response is returned.
|
REG_CE_BEFORE_DELETE_VALUE | 0x00010000L | Fire before registry value delete operations.
The BeforeDeleteValue event will fire anytime the OS attempts to delete a registry value.
|
REG_CE_AFTER_DELETE_VALUE | 0x00020000L | Fire after registry value delete operations.
The AfterDeleteValue event will fire after a registry value delete request has been processed, before the response is returned.
|
REG_CE_BEFORE_ENUM_VALUE | 0x00040000L | Fire before value enumeration operations.
The BeforeEnumerateValue event will fire anytime the OS attempts to enumerate a registry key's values.
|
REG_CE_AFTER_ENUM_VALUE | 0x00080000L | Fire after value enumeration operations.
The AfterEnumerateValue event will fire after a value enumeration request has been processed, before the response is returned.
|
REG_CE_BEFORE_QUERY_VALUE | 0x00100000L | Fire before registry value query operations.
The BeforeQueryValue event will fire anytime the OS attempts to query a registry value.
|
REG_CE_AFTER_QUERY_VALUE | 0x00200000L | Fire after registry value query operations.
The AfterQueryValue event will fire after a registry value query request has been processed, before the response is returned.
|
REG_CE_BEFORE_SET_VALUE | 0x00400000L | Fire before registry value set/update operations.
The BeforeSetValue event will fire anytime the OS attempts to set or update a registry value.
|
REG_CE_AFTER_SET_VALUE | 0x00800000L | Fire after registry value set/update operations.
The AfterSetValue event will fire after a registry value set or update request has been processed, before the response is returned.
|
REG_CE_ALL | -1 | Fire for all registry operations.
Control Events will fire for all registry operations.
|