码迷,mamicode.com
首页 > 系统相关 > 详细

PowerShell 批量创建DNS A记录

时间:2017-04-28 23:36:33      阅读:367      评论:0      收藏:0      [点我收藏+]

标签: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记录

标签:powershell   dns   a记录   

原文地址:http://timefiles.blog.51cto.com/8475652/1920458

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!