Run smss.exe instead of shell.exe.

svn path=/trunk/; revision=643
This commit is contained in:
Eric Kohl 1999-09-05 12:39:45 +00:00
parent 155d1ff5ae
commit d81a116aba

View file

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