Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to create and delete new users on my code. I managed to create with "NetUser" class's "createUser()" fuctions but when i set the options as in the references to create a standart user, it still creating as a guest account. Is there anyone knows what is the reason of my problem?

I am using this code:

//userinfo structure:

 ui.usri1_name = username;
 ui.usri1_password = password;
 ui.usri1_priv = USER_PRIV_USER;
 ui.usri1_home_dir = NULL;
 ui.usri1_comment = NULL;
 ui.usri1_flags = UF_SCRIPT;
 ui.usri1_script_path = NULL;

//Creating user:

DWORD dwLevel = 1;
DWORD dwError = 0;
NET_API_STATUS nStatus;
nStatus = NetUserAdd(L"localhost",dwLevel,(LPBYTE)&ui,&dwError); 

This should create a new user account to be a standart user account but it is always creating a quest user account. This function is runnig in a credential provider hence i don't think the problem is about the permissions. For more information about the NetUserAdd function click.

share|improve this question
1  
I think we'd need more information to help, and maybe to see some code too. – Rup Nov 1 '11 at 15:11
Might be a UAC issue. You probably want to check that the program is running as administrator. – GigaWatt Nov 1 '11 at 15:12
Eddited. Thanks already – kubudi Nov 1 '11 at 16:20

1 Answer

up vote 0 down vote accepted

You have to add the user to the local group called "Users". Therefore you can use the NetLocalGroupAddMembers function.

The name of the local group Users depends on the language of the installed Windows version. In order to get the name of the local group "Users" you can use CreateWellKnownSid (with WinBuiltinUsersSid as WellKnownSidType) and LookupAccountSid.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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