如何使用 WMI 设置 AD 集成 DNS 区域的复制范围?
我需要使用 PowerShell 编写在 Microsoft DNS Server(在 Windows Server 2008 R2 上运行)上创建某些区域的脚本;看起来还没有直接的 PowerShell 支持来管理 DNS 服务器,因此 WMI 是最佳选择。
我可以使用以下代码创建一个新的主要 AD 集成区域:
$DnsZoneClass = ([WMIClass] "Root\MicrosoftDNS:MicrosoftDNS_Zone")
$DnsZoneClass.CreateZone("my.zone.name",0,$true)
问题是,这会自动将新区域的复制范围设置为“此域中的所有域控制器(为了兼容 Windows 2000)”,并且没有更改它的选项。
如何使用 WMI 更改此设置?我已经在 MicrosoftDNS_Zone
类的文档中寻找了一段时间,但我无法找到任何方法来做到这一点。
I need to use PowerShell to script the creation of some zones on Microsoft DNS Server (running on Windows Server 2008 R2); looks like there is no direct PowerShell support for managing the DNS server (yet), so WMI is the way to go.
I can create a new primary AD-integrated zone with this code:
$DnsZoneClass = ([WMIClass] "Root\MicrosoftDNS:MicrosoftDNS_Zone")
$DnsZoneClass.CreateZone("my.zone.name",0,$true)
The problem is, this automatically sets the replication scope of the new zone to "All domain controllers in this domain (for Windows 2000 compatibility)" and has no option for changing it.
How can I change this setting using WMI? I've been looking for a while at the documentation of the MicrosoftDNS_Zone
class, but I wasn't able to find any way to do this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论