Table of Contents
This practical guide walks through how to install DNS server on Windows server 2019, explains the main requirements, and highlights common issues that may appear along the way.
Install DNS Server on Windows Server 2019
Configure DNS Server to provide hostname resolution or IP address!
On the CUI settings, set up as follows:
Step 1. Run PowerShell as admin and enter the following code to install DNS Server.
Windows PowerShell Copyright (C) Microsoft Corporation. All rights reserved. # install DNS with admin tools PS C:UsersAdministrator> Install-WindowsFeature DNS -IncludeManagementTools Success Restart Needed Exit Code Feature Result ------- -------------- --------- -------------- True Yes SuccessRest. {DNS Server, . WARNING: You must restart this server to finish the installation process. # restart computer to apply changes PS C:UsersAdministrator> Restart-Computer -Force
On the GUI settings, set up as follows:
Step 2. Run Server Manager and click Add roles and features .

Step 3. Click the Next button .

Step 4. Select Role-based or feature-based installation .

Step 5. Select a Host for which you want to add services.

Step 6. Check the box DNS Server .

Step 7. Additional features required to add DNS Server. Click the Add Features button and then click Next .

Step 8. Click the Next button .

Step 9. Click the Next button .

Step 10. Click the Install button .

Step 11. After finishing the installation process, click the Close button .

Add the Forward Lookup Zone to the DNS Server
Step 1. Run Powershell as administrator and configure it as follows.
The following example adds a Forward Lookup Zone with the Zone-Name setting "srv.world" , Zone-File "srv.world.dns" . In general, give your domain name or part of your domain name to Zone-Name.
Windows PowerShell Copyright (C) Microsoft Corporation. All rights reserved. PS C:UsersAdministrator> 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:UsersAdministrator> Get-DnsServerZone # [srv.world] has been added 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 TrustAnchors Primary False False False False # if remove it, run like follows PS C:UsersAdministrator> 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
Step 2. Run Server Manager and select Tools> DNS .

Step 3. Select Hostname in the left panel and right click on Hostname to bring up the menu and select New Zone .

Step 4. Click the Next button .

Step 5. Check the Primary zone box and click the Next button .

Step 6. Check the Forward Lookup Zone box and click the Next button .

Step 7. Enter a name in the Zone name field . As described on the screenshot below, please give the domain name or part of the domain name to this Zone name.

Step 8. Set zone-file-name and click Next button . You can keep the default name for zone-file-name.

Step 9. Click the Next button and keep the default options.

Step 10. Click the Finish button .

Step 11. A new zone has been created in the Forward Lookup Zone.

Key Takeaways
Use the information above as a practical reference for how to install DNS server on Windows server 2019. Review each step carefully, confirm any requirements, and choose the option that best fits your situation.
FAQ
What does this guide explain about Install DNS Server on Windows Server 2019?
It explains the main concepts, practical considerations, and useful steps related to install DNS server on Windows server 2019 without requiring advanced knowledge.
Who can benefit from learning about Install DNS Server on Windows Server 2019?
This information is useful for readers who want a clear overview, practical guidance, and reliable steps related to install DNS server on Windows server 2019.
What should I check before applying this information?
Review the requirements, confirm that your device, software, or situation matches the instructions, and back up important data before making major changes.
Reader Comments 0
Sign in with email or Google to join the discussion.