mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 17:05:46 +00:00
Run smss.exe instead of shell.exe.
svn path=/trunk/; revision=643
This commit is contained in:
parent
155d1ff5ae
commit
d81a116aba
1 changed files with 2 additions and 1 deletions
|
@ -553,7 +553,8 @@ NTSTATUS LdrLoadInitialProcess (VOID)
|
|||
* alias name which is in \\??\\).
|
||||
*/
|
||||
GetSystemDirectory(TmpNameBuffer, sizeof TmpNameBuffer);
|
||||
wcscat(TmpNameBuffer, L"\\shell.exe");
|
||||
// wcscat(TmpNameBuffer, L"\\shell.exe");
|
||||
wcscat(TmpNameBuffer, L"\\smss.exe");
|
||||
RtlInitUnicodeString(&ProcessName, TmpNameBuffer);
|
||||
Status = LdrLoadImage(ProcessHandle, &ProcessName);
|
||||
if (!NT_SUCCESS(Status))
|
||||
|
|
Loading…
Reference in a new issue