RESOLVE ALL RECORDS
Shell
dig google.com any
Windows PowerShell
Resolve-DnsName -Name google.com -Type any
Resolve a records
Shell
dig google.com a
Windows PowerShell
Resolve-DnsName -Name google.com -Type a
Resolve aAAA records
Shell
dig google.com aaaa
Windows PowerShell
Resolve-DnsName -Name google.com -Type aaaa
Resolve CNAME records
Shell
dig www.google.com cname
Windows PowerShell
Resolve-DnsName -Name www.google.com -Type cname
Resolve MX records
Shell
dig google.com mx
Windows PowerShell
Resolve-DnsName -Name google.com -Type mx