I have a piece of code that calls LogonUser() followed by CreateProcessAsUser(). In Win32, the resulting process belongs to a user (say, TESTDOMAIN\user1) who belongs to the LOCAL group. However, in x64, the process owner does not belong to LOCAL. The owner still belongs to all other groups (Authenticated Users, Everyone, etc.)

Does anyone know if this is a documented behavior change? Or am I supposed to put some special flag in x64 when calling LogonUser()?

Thanks.

link|improve this question

0% accept rate
Are you sure the difference is between 64-bit and 32-bit? Where is LOCAL defined? Is it defined on both machines? – John Jan 21 '11 at 4:23
feedback

1 Answer

In no version of MS Windows is there such a thing as a group named "LOCAL". Read this http://technet.microsoft.com/en-us/library/bb726980.aspx Then try being more specific, and correct in your use of the names and terminology.

Please provide more context also: The specific operating system are you using? Is the caller of CreateProcessAsUser a Service?

link|improve this answer
Open your ProcessExplorer, choose any process, see the Security. Is there no LOCAL? – edwinbs Mar 31 '11 at 9:16
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.