我有這樣的代碼來創建一個本地Windows用戶創建本地用戶帳戶
public static bool CreateLocalWindowsAccount(string username, string password, string displayName, string description, bool canChangePwd, bool pwdExpires)
{
try
{
PrincipalContext context = new PrincipalContext(ContextType.Machine);
UserPrincipal user = new UserPrincipal(context);
user.SetPassword(password);
user.DisplayName = displayName;
user.Name = username;
user.Description = description;
user.UserCannotChangePassword = canChangePwd;
user.PasswordNeverExpires = pwdExpires;
user.Save();
//now add user to "Users" group so it displays in Control Panel
GroupPrincipal group = GroupPrincipal.FindByIdentity(context, "Users");
group.Members.Add(user);
group.Save();
return true;
}
catch (Exception ex)
{
LogMessageToFile("error msg" + ex.Message);
return false;
}
}
我想這在我的機器上正常工作。但後來我把它放在Windows服務器上。並試圖在那裏創建一個用戶。
首先,我得到了錯誤「常規訪問被拒絕錯誤」 ,所以我取得了用戶的管理員
,但現在我得到的錯誤「網絡路徑找不到」
我怎樣才能解決這個錯誤..感謝
如果其中一個密碼問題PasswordExecption將不會拋出一個IOException – 2010-09-16 19:21:31
「網絡路徑找不到」也可以的消息通過COM – 2010-09-16 19:24:56
所以此工程拋出....但是這是不添加用戶組中的用戶....任何幫助? – user175084 2010-09-16 19:26:50