如何使用 WMI 设置 AD 集成 DNS 区域的复制范围?

发布于 2024-10-30 08:00:35 字数 476 浏览 0 评论 0原文

我需要使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文