Windows PowerShell
Copyright (C) 2016 Microsoft Corporation. All rights reserved.
PS C:\Users\Administrator> Add-DnsServerPrimaryZone -Name "srv.world" -ZoneFile "srv.world.dns" -DynamicUpdate None -PassThru
ZoneName ZoneType IsAutoCreated IsDsIntegrated IsReverseLookupZone IsSigned
-------- -------- ------------- -------------- ------------------- --------
srv.world Primary False False False False
PS C:\Users\Administrator> Get-DnsServerZone
# [srv.world] ゾーンが登録された
ZoneName ZoneType IsAutoCreated IsDsIntegrated IsReverseLookupZone IsSigned
-------- -------- ------------- -------------- ------------------- --------
0.in-addr.arpa Primary True False True False
127.in-addr.arpa Primary True False True False
255.in-addr.arpa Primary True False True False
srv.world Primary False False False False
# もし削除する場合は以下
PS C:\Users\Administrator> Remove-DnsServerZone "srv.world" -PassThru
Confirm
この操作を行うと、ゾーン内のレコードもすべて削除され、サーバーはゾーンをホストしなくなります。続行しますか?
[Y] Yes [N] No [S] Suspend [?] Help (default is "Y"): Y
ZoneName ZoneType IsAutoCreated IsDsIntegrated IsReverseLookupZone IsSigned
-------- -------- ------------- -------------- ------------------- --------
srv.world Primary False False False False
|