Hi All,

Can you please let me know what ,message is sent by windows logon
services when a User logs into the system.

I have services running in the system. I need to detect a Logged in
user and launch an application into his account.


Thanks
Anup

Re: what message is sent by login services when user logs in to by Matrixinline

Matrixinline
Sun Oct 05 23:22:00 CDT 2008

I got WM_USERCHANGED message .

On Oct 3, 12:31=A0pm, Matrixinline <anup.kata...@gmail.com> wrote:
> Hi All,
>
> Can you please let me know what ,message is sent by windows logon
> services when a User logs into the system.
>
> I have services running in the system. I need to detect a Logged in
> user and launch an application into his account.
>
> Thanks
> Anup


Re: what message is sent by login services when user logs in to system. by David

David
Mon Oct 06 02:14:55 CDT 2008

>I got WM_USERCHANGED message .

Out of interest, could you outline in what situation you use this
message?

At first sight it would appear to me to be a chicken and egg problem -
when a user logs off, their application windows are closed, and their
applications can only start after they've logged on, so when is this
message sent?

Dave

Re: what message is sent by login services when user logs in to by Pavel

Pavel
Mon Oct 06 06:27:39 CDT 2008

David Lowndes wrote:
>> I got WM_USERCHANGED message .
>
> Out of interest, could you outline in what situation you use this
> message?
>
> At first sight it would appear to me to be a chicken and egg problem -
> when a user logs off, their application windows are closed, and their
> applications can only start after they've logged on, so when is this
> message sent?

Fast user switch?


--PA


Re: what message is sent by login services when user logs in to system. by David

David
Mon Oct 06 07:58:50 CDT 2008

>Fast user switch?

Yes, I guess that would be one scenario where already running
applications would get the message, but I was curious as to how it
would apply for a single-user logging on/off scenario - in that case I
couldn't see how it would work.

Dave