DHCP callout API registry entry

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

From reading MSDN, I am unable to discern what the format of the registry entry/key/value/whatever needs to look like for registering a DHCP Callout Dll. The documentation simply states

"Developers register to have the occurrence of these events call their functions by creating a specified registry entry that Microsoft DHCP Server reads upon startup

The location of the registry entry is

HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\DHCPServer\Parameters

No more, no less. If anyone has any ideas as to what entries I need to place in the parameters key, I will forever be in debt..
 
Registry keys (for Windows Server 2003) are:

located within:
HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\DHCPServer\Parameters

Value/Type
meaning
CalloutDlls/REG_MULTI_SZ
list of path/filenames for the dlls to be loaded.
CalloutEnabled/DWORD
0 = DHCP Server does not attempt load of callout.dlls
1 = DHCP Server attempts to load callout.dlls


--
==============================
Chris Edson
(e-mail address removed)

This posting is provided "AS IS" with
no warranties, and confers no rights.
===============================
 
Back
Top