vote up 0 vote down star

Hi, I'm trying to call LookupAccountName on Vista - it always fails with the error ERROR_NONE_MAPPED.

What could be the reason??

Thanks!!

flag

0% accept rate
Can you give exact arguments that you pass to this function? – Marcin Hoppe Nov 3 at 13:46

1 Answer

vote up 0 vote down

ERROR_NONE_MAPPED typeically means that the username you provided is not available in the format you specified.

link|flag
Thanks for replying. The user exists, and the format is correct. This problem occurs only on Vista, in other OSs it works excellent, so I think that it is not the problem. Any other idea? – rursw1 Nov 4 at 10:47
Clearly, the user does not actually exist, or at least not in the format you specified it in, otherwise you would not be getting that particular error code. Something else to consider is that LookupAccountSid() returns ERROR_NONE_MAPPED if a name for the SID cannot be found, which either means no name actually exists, or a network timeout prevented the name from being discovered. A similar restriction likely exists in LookupAccountName() as well. – Remy Lebeau - TeamB Nov 4 at 22:14

Your Answer

Get an OpenID
or

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