Skip to content

Instantly share code, notes, and snippets.

@jnm2
Created April 9, 2022 21:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jnm2/bf98d3f9d6d998f25b397c77848886cb to your computer and use it in GitHub Desktop.
Save jnm2/bf98d3f9d6d998f25b397c77848886cb to your computer and use it in GitHub Desktop.
Get-NetNeighbor -AddressFamily IPv4 |
Select-Object -ExpandProperty IPAddress -Unique |
ForEach-Object -ThrottleLimit 20 -Parallel {
try {
(Resolve-DnsName $_ -LlmnrNetbiosOnly -ErrorAction Stop).NameHost
} catch { }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment