首页 > 代码库 > PowerShell 批量创建DNS A记录

PowerShell 批量创建DNS A记录

$dnsServerName="dsnsvr.test.com"
$containerName="test.com"
$dns = [WMIClass]"ROOT\MicrosoftDNS:MicrosoftDNS_ResourceRecord"
Get-Content C:\dnsListFile.txt | Foreach-Object {$dns.CreateInstanceFromTextRepresentation($dnsServerName, $containerName, $_)}

技术分享

本文出自 “汜水流年_” 博客,请务必保留此出处http://timefiles.blog.51cto.com/8475652/1920458

PowerShell 批量创建DNS A记录