博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C#中获取进程的用户名
阅读量:5031 次
发布时间:2019-06-12

本文共 1862 字,大约阅读时间需要 6 分钟。

一、新创建一个C#窗体应用程序

 

二、首先需要在引用中添加对 System.Management.dll 的引用

 

三、在窗体中添加一个文本框和一个按钮,如下图所示:

 

四、添加后台代码,如下:

using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;using System.Diagnostics;using System.Management;namespace 获取进程的用户名{    public partial class Form1 : Form    {        public Form1()        {            InitializeComponent();        }        ///         /// 通过进程Id来获取进程的用户名        ///         /// 进程Id        /// 
private static string GetProcessUserName(int processId) { string name = ""; SelectQuery query = new SelectQuery("select * from Win32_Process where processID=" + processId); ManagementObjectSearcher searcher = new ManagementObjectSearcher(query); try { foreach (ManagementObject disk in searcher.Get()) { ManagementBaseObject inPar = null; ManagementBaseObject outPar = null; inPar = disk.GetMethodParameters("GetOwner"); outPar = disk.InvokeMethod("GetOwner", inPar, null); name = outPar["User"].ToString(); break; } } catch { name = "SYSTEM"; } return name; } private void button1_Click(object sender, EventArgs e) { string pName = textBox1.Text; Process[] ps = Process.GetProcessesByName(pName); foreach (Process p in ps) { //弹出进程名和进程的用户名 MessageBox.Show(p.ProcessName + "||" + GetProcessUserName(p.Id)); } } }}

 

五、这样就能够得到要查询的进程的用户名了!!

转载于:https://www.cnblogs.com/sunzhenying/archive/2012/04/27/2474400.html

你可能感兴趣的文章
photoplus
查看>>
Python 拓展之推导式
查看>>
[Leetcode] DP-- 474. Ones and Zeroes
查看>>
80X86寄存器详解<转载>
查看>>
c# aop讲解
查看>>
iterable与iterator
查看>>
返回顶部(动画)
查看>>
webpack+react+antd 单页面应用实例
查看>>
Confluence 6 SQL Server 数据库驱动修改
查看>>
Confluence 6 通过 SSL 或 HTTPS 运行 - 备注和问题解决
查看>>
【47.76%】【Round #380B】Spotlights
查看>>
Git(使用码云)
查看>>
分享Java web 开发必游之路
查看>>
IIS初始化(预加载),解决第一次访问慢,程序池被回收问题(转载)
查看>>
Bean的Scope
查看>>
【BZOJ】3142: [Hnoi2013]数列
查看>>
http初探
查看>>
W3C标准以及规范
查看>>
elasticsearch的安装
查看>>
__next__()
查看>>