From eb7be7000705f8be29f51e387e23ce8e746bd8a7 Mon Sep 17 00:00:00 2001 From: Eric Kohl Date: Sun, 29 Dec 2019 10:09:56 +0100 Subject: [PATCH] [SYSSETUP] Start the dnscache service after the network support has been installed CORE-16558 --- dll/win32/syssetup/install.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dll/win32/syssetup/install.c b/dll/win32/syssetup/install.c index 7ce1aaa3ffa..5f5f92bcf7f 100644 --- a/dll/win32/syssetup/install.c +++ b/dll/win32/syssetup/install.c @@ -756,6 +756,7 @@ InstallLiveCD(VOID) /* Start the TCP/IP protocol driver */ SetupStartService(L"Tcpip", FALSE); SetupStartService(L"Dhcp", FALSE); + SetupStartService(L"Dnscache", FALSE); } /* Register components */ @@ -1274,6 +1275,7 @@ InstallReactOS(VOID) /* Start the TCP/IP protocol driver */ SetupStartService(L"Tcpip", FALSE); SetupStartService(L"Dhcp", FALSE); + SetupStartService(L"Dnscache", FALSE); } InstallWizard();