- Notify umpnpmgr about logon after the shell has initialized

- This makes it possible to progress if userinit crashes due to heavy debug output (due to timing issues in its communication with umpnpmgr), which would leave you stranded with no shell. Not really a hack, as it doesn't hide or fix the crash -- just limits it to a missing "Pending device installations" prompt in case there are any pending. Also, it appears to be done the same way on Windows.

svn path=/trunk/; revision=36894
This commit is contained in:
Stefan Ginsberg 2008-10-22 13:59:01 +00:00
parent f9eb539194
commit 3113d2a3ba

View file

@ -580,9 +580,9 @@ wWinMain(IN HINSTANCE hInst,
IN LPWSTR lpszCmdLine,
IN int nCmdShow)
{
NotifyLogon();
SetUserSettings();
StartShell();
NotifyLogon();
return 0;
}