Show all DHCP Server using netsh
netsh dhcp show server
Show specific DHCP Server using netsh and findstr
netsh dhcp show server | findstr "dhcp01"
Show two DHCP Server
using netsh
netsh dhcp show
server | findstr "dhcp01 dhcp02"
Results could be exported with >%path%
netsh
dhcp show server >C:\admin\dhcp.txt
You can use Powershell using get-adobject and export it with export-csv
$RootDSE =
[System.DirectoryServices.DirectoryEntry]([ADSI]"LDAP://RootDSE")
$CfgNC =
$RootDSE.Get("configurationNamingContext")
Get-ADObject
-SearchBase "$CfgNC" -Filter "objectclass -eq 'dhcpclass' -AND
Name -ne 'dhcproot'" | select name | Sort-Object -Property Name |
Export-csv "C:\admin\Forest DHCP Servers.csv" -NoType
Or just using Get-DhcpServerInDC
Get-DhcpServerInDC
If you want to filter using Get-DhcpServerInDC you can do it like this
Get-DhcpServerInDC | where dnsname -like *dhcp02*
If you want to filter using Get-DhcpServerInDC you can do it like this
Get-DhcpServerInDC | where dnsname -like *dhcp02*
No comments:
Post a Comment