June 22nd, 2014

PowerTip: Create an SRV Record in DNS with PowerShell

Doctor Scripto
Scripter

Summary: Use Windows PowerShell cmdlets to create a server resource record.

Hey, Scripting Guy! Question Is there was a way to script the creation of my internal server resource records for my Lync deployments?

Hey, Scripting Guy! Answer If you're running Windows Server 2012 R2 or Windows Server 2012,
          use the Add-NewDNSServerResourceRecord cmdlet (the following is a one-line command
          that is broken for the webpage):

Add-DnsServerResourceRecord –zone Contoso.local –name _sip
–domainname sip.contoso.local –weight 0 –priority 0 –port 5060 –computername Contoso-DC

Author

The "Scripting Guys" is a historical title passed from scripter to scripter. The current revision has morphed into our good friend Doctor Scripto who has been with us since the very beginning.

0 comments

Discussion are closed.