The Below Powershell script will Add DNS Records to Server Network.

#!powershell
#####################################################
# Set DNS on Server #
#####################################################
Example:
$DNS1=”10.220.13.10″
$DNS2=”10.220.13.11″

Set-DnsClientServerAddress -InterfaceAlias ‘*’ -ServerAddresses($DNS1, $DNS2)