Rebuilt my Windows 10 workstation & RSAT install doesn't have the DNS or DHCP consoles

Jobee 1 Kenobi 1 Reputation point
2022-11-10T20:02:24.387+00:00

Due to circumstances within my control I had to do a "Nuke & Repopulate" on my Windows 10 workstation. It's back up and running, and I was able to successfully install RSAT, but the DNS and DHCP consoles no longer show up when I right-click on a domain controller.

I ran:

Get-WindowsCapability -Name Rsat* -Online | Select -Property Name, DisplayName

and I can see this:

Rsat.DHCP.Tools~~~~0.0.1.0 RSAT: DHCP Server Tools
Rsat.Dns.Tools~~~~0.0.1.0 RSAT: DNS Server Tools

So I'm pretty sure the consoles have been installed. I checked Control Panel -> Programs & Features -> Windows Features but there's nothing there. Any ideas on how I can regain the DHCP and DNS consoles?

Thanks,

Joe B

Windows for business | Windows Server | User experience | Other
Windows for business | Windows Client for IT Pros | User experience | Other
0 comments No comments
{count} votes

4 answers

Sort by: Most helpful
  1. Anonymous
    2022-11-10T21:19:34.377+00:00

    Also try to run from cmd.exe
    dnsmgmt.msc
    dhcpmgmt.msc

    --please don't forget to upvote and Accept as answer if the reply is helpful--


  2. Jobee 1 Kenobi 1 Reputation point
    2022-11-15T21:19:08.79+00:00

    Sorry for the delay. Here's what I see after running each of those commands from cmd.exe as administrator:

    Microsoft Windows [Version 10.0.19045.2251]
    (c) Microsoft Corporation. All rights reserved.

    C:\Windows\system32>dnsmgmt.msc
    'dnsmgmt.msc' is not recognized as an internal or external command,
    operable program or batch file.

    C:\Windows\system32>dhcpmgmt.msc
    'dhcpmgmt.msc' is not recognized as an internal or external command,
    operable program or batch file.

    Thanks,

    Joe B

    C:\Windows\system32>

    0 comments No comments

  3. Anonymous
    2022-11-15T21:23:21.983+00:00

    Might try removing, reboot, readd the RSAT modules.

    --please don't forget to upvote and Accept as answer if the reply is helpful--

    0 comments No comments

  4. Jobee 1 Kenobi 1 Reputation point
    2022-11-16T00:11:35.443+00:00

    Ok, I found my problem. I have a local WSUS server and I remembered another issue a while back where I had to disable my workstations connection to WSUS. Using Windows Regedit I navigated to

    Computer\HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU\UseWUServer  
    

    and changef the 1 to a 0. I then ran the following to install RSAT:

    Get-WindowsCapability -Name RSAT* -Online | Add-WindowsCapability –Online  
    

    Now I have my DNS and DHCP consoles back, and I need to change that 0 back to a 1 and move on to the next "adventure." I hope this helps other people with the same or a similar problem.

    Thanks,

    Joe B


Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.