From powershell, I can run Get-DnsServerResourceRecord -zonename "test.com" to get all records in the zone.
I can load all zones to a variable, and use a for loop to get all records in all zones.
What I want is all records from all zones with a record containing an IP address within a CIDR range.
Example: I want all records in all zones that have a value of 10.10.10.1/24 The return would hopefully contain zone, record type, record name, and value E.G. temp.com, A Record, www, 10.10.10.10 test.org, cname, host1, 10.10.10.25 etc