File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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 ();
You can’t perform that action at this time.
0 commit comments