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

  • 相关阅读:
    Redis系统管理
    Redis简介和安装
    在Azure中搭建Ghost博客并绑定自定义域名和HTTPS
    ML:单变量线性回归(Linear Regression With One Variable)
    PRML Chapter4
    Windows+Idea安装Hadoop开发环境
    包装类
    认识J2SE
    Spark基本原理
    SQL总结
  • 原文地址:https://www.cnblogs.com/skylaugh/p/2514455.html
Copyright © 2011-2022 走看看