Here is that link for those without the Microsoft Premier account

http://support.microsoft.com/default.aspx?scid=kb;en-us;303351

You might also be able to use code that queries the SERVERS OU in AD with code something like this.

UNTESTED CODE


For each $server in $serverlist
$DHCP=ReadValue('HKLM\SYSTEM\CurrentControlSet\Services\DHCPServer\Parameters', 'DhcpLogFilePath')
? 'Server '+$server+' lists the DHCP log path as: '+$DHCP
Next