[SYSSETUP] Start the dnscache service after the network support has been installed

CORE-16558
This commit is contained in:
Eric Kohl 2019-12-29 10:09:56 +01:00
parent 07e1f6ed47
commit eb7be70007

View file

@ -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();