lee*_*d00 5 domain-name-system windows
Windows DNS 服务器可以在其 DNS 条目中指定额外数据,以提醒某些机器特定类型服务器的位置……例如,条目可能具有一些指定以下数据的数据:
您指的是服务记录位置 (SRV)。它们不是 Windows DNS 特定的。
使用 Powershell,您可以轻松地从 AD 域中检索它们。
Import-Module DnsServer
Get-DnsServerResourceRecord -RRType SRV -ZoneName $(Get-ADDomain).DNSRoot -ComputerName $(Get-ADDomain).DNSRoot
Run Code Online (Sandbox Code Playgroud)