zoukankan      html  css  js  c++  java
  • C#获取当前域用户名

    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;
    }
    }

  • 相关阅读:
    java8新特性之Lambda表达式入门
    小结
    Kafka入门
    关于java多线程初试
    关于Netty入门
    IOS UITableView代码添加数据源和指定委托
    C#读书笔记1
    vs2008 C# Windows Mobile 智能设备开发 初步1
    Microsoft ActiveSync简介(来自网络)
    winForm单击用户区可移动窗体,代码控制窗体最大适中
  • 原文地址:https://www.cnblogs.com/skylaugh/p/2514455.html
Copyright © 2011-2022 走看看