仰天一笑(Ansonxuyu),专业从事软件定制开发、Web软件开发,网站建设,网络推广,APP开发,微博应用开发,微信应用开发,电子商务开发,物联网开发等技术。
互联网8年风雨,愿在此交朋识友,交流心得,分享技术知识(策划/研发/运营/推广/合作)!QQ:943530498


仰天一笑

昨日不悔,今日勿失,明日莫忧! —徐羽

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

c# 修改域账号密码

DirectoryEntry entry1 = new DirectoryEntry("LDAP://" + “域名”, “用户名",“密码”);
DirectorySearcher searcher1 = new DirectorySearcher(entry1);
searcher1.Filter = "(samAccountName=" + “用户名" + ")";
SearchResult result1 = searcher1.FindOne();

"域名" 格式( dc=baidu,dc=com )

 

C#获取当前域用户名

Ensure your project has referenced dll"System.Management", then csharp codes as below:
using System.Diagnostics;
using System.Management;
namespace WorkRecord
{
class CurrentUser
{
public static string GetCurrentUser()
{
string currentUser = null;
foreach (Process p in Process.GetProcesses())
{
currentUser = GetProcessUserName(p.Id);
if (currentUser != "SYSTEM" && currentUser != null && currentUser != string.Empty)
break;
}
return currentUser;
}
private static string GetProcessUserName(int pID)
{
string theUser = null;
SelectQuery query1 = new SelectQuery("Select * from Win32_Process WHERE processID=" + pID);
ManagementObjectSearcher searcher1 = new ManagementObjectSearcher(query1);
try
{
foreach (ManagementObject disk in searcher1.Get())
{
ManagementBaseObject inPar = null;
ManagementBaseObject outPar = null;
inPar = disk.GetMethodParameters("GetOwner");
outPar = disk.InvokeMethod("GetOwner", inPar, null);
theUser = outPar["User"].ToString();
break;
}
}
catch
{
theUser = "SYSTEM";
}
return theUser;
}
}

posted on 2012-05-23 11:06  仰天一笑  阅读(8446)  评论(1编辑  收藏  举报