XP and Vista Question... Thread last updated on 2006-12-09 03:41:27

Posted by member 354621 on 2006-12-04 15:09:39

Hello,

In the litestep source there is the following code:

// Tell the Welcome Screen to close
// This has to be done before the first MessageBox call, else that box
// would pop up "under" the welcome screen
HANDLE hShellReadyEvent = OpenEvent(EVENT_MODIFY_STATE, FALSE, "msgina: ShellReadyEvent");

if (hShellReadyEvent != NULL)
{
SetEvent(hShellReadyEvent);
CloseHandle(hShellReadyEvent);
}

This works fine for XP, but does not work in Vista. Vista also ignores any GINA.DLL.

Does anyone know what this code should be for Vista?

I am looking for a way to dismiss he welcome screen in LiteStep.

Any help would be greatly appreciated.

Thanks,
Tony

Posted by member 212670 on 2006-12-04 15:27:59 link

Probably a better place for that question would be here.

Posted by member 31 on 2006-12-09 03:41:27 link

You might have better luck on the general windows shell developers list:

http://dir.gmane.org/gmane.comp.windows.shell-shocked.devel

I don't know that anyone has looked at or solved the issue yet.