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.