Do you have a client which doesn't always create the DNS record as you asked....
A useful poweshell script to return a set of ip adresses and record type from the DNS server on the network, returned in a csv file.
There are 3 parts to this:
An input file
A powershell script
An output file
Input file
You will need a list of servers, DNS alias's or sub domains in a txt file, return separated.
e.g.
ser12365v.bsmt.uk
dynamics.bsmt.uk
Powershell script
Location of source file
Location of output file
Get-Content "D:\Working Documents\ADAccountsStatus\DNSList.txt" | Resolve-DNSName | Select Name,IPAddress,Type | export-csv "D:\Working Documents\ADAccountsStatus\DNSConfig.csv"
Output file
You will get a csv file with the ip address and type or record.