Summary: Use Windows PowerShell to set the primary and secondary DNS server addresses for a client.
I recently changed the IP address scheme for an entire subnet. How can I use Windows PowerShell to set the
primary and secondary DNS server addresses for the client workstations?
Use the Set-DNSClientServerAddress cmdlet, and specify the primary and the secondary DNS servers as
an array, for example:
Set-DNSClientServerAddress –interfaceIndex 12 –ServerAddresses (“10.0.0.1”,”10.0.0.2”)