Skip to content

Commit d4486b8

Browse files
committed
[SYSSETUP] Fix wine gecko install in second stage setup
CORE-20422
1 parent a409e5d commit d4486b8

1 file changed

Lines changed: 15 additions & 0 deletions

File tree

dll/win32/syssetup/install.c

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1569,6 +1569,7 @@ InstallReactOS(VOID)
15691569
TOKEN_PRIVILEGES privs;
15701570
HKEY hKey;
15711571
HANDLE hHotkeyThread;
1572+
BOOL ret;
15721573

15731574
InitializeSetupActionLog(FALSE);
15741575
LogItem(NULL, L"Installing ReactOS");
@@ -1638,6 +1639,20 @@ InstallReactOS(VOID)
16381639
if (!CommonInstall())
16391640
return 0;
16401641

1642+
/* Install the TCP/IP protocol driver */
1643+
ret = InstallNetworkComponent(L"MS_TCPIP");
1644+
if (!ret && GetLastError() != ERROR_FILE_NOT_FOUND)
1645+
{
1646+
DPRINT("InstallNetworkComponent() failed with error 0x%lx\n", GetLastError());
1647+
}
1648+
else
1649+
{
1650+
/* Start the TCP/IP protocol driver */
1651+
SetupStartService(L"Tcpip", FALSE);
1652+
SetupStartService(L"Dhcp", FALSE);
1653+
SetupStartService(L"Dnscache", FALSE);
1654+
}
1655+
16411656
InstallWizard();
16421657

16431658
SetAutoAdminLogon();

0 commit comments

Comments
 (0)