locked
How to disable Windows 10 DNS Cache services RRS feed

  • Question

  • How do I disable the windows 10 DNS client service (DNS local Cache).

    C:\WINDOWS\system32>net stop dnscache
    The requested pause, continue, or stop is not valid for this service.

    Friday, April 6, 2018 5:39 AM

Answers

  • Hi Adithya,

    Disable DNS Client through registry:

    Go to HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\Dnscache,
    Locate the Start registry key and change its value from 2 (Automatic) to 4 (Disabled)

    Disable DNS client through command line:

    REG add "HKLM\SYSTEM\CurrentControlSet\services\Dnscache" /v Start /t REG_DWORD /d 4 /f

    Bests,


    Please remember to mark the replies as answers if they help.
    If you have feedback for TechNet Subscriber Support, contact tnmff@microsoft.com.

    • Proposed as answer by Joy-Qiao Monday, April 9, 2018 5:04 AM
    • Marked as answer by Adithya A C Wednesday, April 11, 2018 5:18 AM
    Monday, April 9, 2018 5:04 AM

All replies

  • Hi Adithya,

    You'll have to use the PsExec tools from SysInternals.

    That way you can start your CMD as NETWORK SERVICE (the account that manages the dnscache service).

    psexec -i -u "nt authority\network service" cmd.exe 

    You can afterwards run the same command, and it should be able to stop the service.

    Regards,

    Thomas


    Please remember to mark the post(s), which answered your question.

    Friday, April 6, 2018 9:30 AM
  • Hi Adithya,

    Disable DNS Client through registry:

    Go to HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\Dnscache,
    Locate the Start registry key and change its value from 2 (Automatic) to 4 (Disabled)

    Disable DNS client through command line:

    REG add "HKLM\SYSTEM\CurrentControlSet\services\Dnscache" /v Start /t REG_DWORD /d 4 /f

    Bests,


    Please remember to mark the replies as answers if they help.
    If you have feedback for TechNet Subscriber Support, contact tnmff@microsoft.com.

    • Proposed as answer by Joy-Qiao Monday, April 9, 2018 5:04 AM
    • Marked as answer by Adithya A C Wednesday, April 11, 2018 5:18 AM
    Monday, April 9, 2018 5:04 AM
  • Hi Adithya,

    Disable DNS Client through registry:

    Go to HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\Dnscache,
    Locate the Start registry key and change its value from 2 (Automatic) to 4 (Disabled)

    Disable DNS client through command line:

    REG add "HKLM\SYSTEM\CurrentControlSet\services\Dnscache" /v Start /t REG_DWORD /d 4 /f

    Bests,


    Please remember to mark the replies as answers if they help.
    If you have feedback for TechNet Subscriber Support, contact tnmff@microsoft.com.


    It worked, Thanks
    Wednesday, April 11, 2018 5:19 AM
  • It worked fine on my Win7 Pro in an elevated console (running as administrator).
    Wednesday, April 8, 2020 6:41 AM