首页 > 开发 > 综合 > 正文

C#根据计算机名获取对应IP地址

2024-07-21 02:25:57
字体:
来源:转载
供稿:网友


private string  addwindowsuser(string   strdoamin,   string   strlogin,   string   strpwd)  
  {  
   directoryentry   obdirentry   =   null;  
   try  
   {  
    obdirentry   =   new   directoryentry("winnt://"   +   strdoamin);  
    directoryentries   entries   =   obdirentry.children;  
    directoryentry   obuser   =   entries.add(strlogin,   "user");  
    obuser.properties["fullname"].add("amigo");  
    object   obret   =   obuser.invoke("setpassword",   strpwd);  
    obuser.commitchanges(); 
    return "";
   }  
   catch   (exception   ex)  
   {  
    //messagebox.show(ex.message);  
    return ex.message;  
   }  
  }  
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表