当前位置: 代码网 > it编程>编程语言>C# > 基于C#实现进程回收管理工具

基于C#实现进程回收管理工具

2024年05月28日 C# 我要评论
设计初衷在使用 com 模式操作 office 组件的开发过程中,当操作完相关文档后,在某些情况下仍然无法释放掉 word 或 excel 等应用进程,因此根据进程活动情况或时间点范围开发了一个强制杀

设计初衷

在使用 com 模式操作 office 组件的开发过程中,当操作完相关文档后,在某些情况下仍然无法释放掉 word 或 excel 等应用进程,因此根据进程活动情况或时间点范围开发了一个强制杀掉指定进程名称的 winform 程序,做为一种辅助工具运行在云服务器上,命名为 craneoffice processgc。

开发运行环境

操作系统: windows server 2019 datacenter

.net版本: .netframework4.0 或以上

开发工具:vs2019  c#

craneoffice processgc

该工具软件属绿色版,无须安装,直接运行 bin 目录下的 processgc.exe 即可,同目录下的 processlist.txt 为配置文件,用于配置要释放的进程,后续也可用工具程序进行操作。

运行主界面

运行后的主界面如下图:

主界面显示了要回收的进程列表,源引于 processlist.txt 文件配置,如图示例我们可以看到欲回收的进程为excel和word,下面则显示已被回收的进程(如果有的话)。

下方显示 cpu 的利用率和可用内存情况。

系统会随时监测指定的进程名,如果有则按指定的策略进行管理。

管理任务与策略

点击管理任务选项卡,显示如下图:

策略设置如下表:

序号说明
1要添加回收的进程名请正确添加,无须输入扩展名,如果不确定名称则可以通过任务管理器进行查看
2管理策略共分三种方式:
1、force(默认值,表示符合条件则强制关闭)
2、cpu
3、memory
3回收时间差(秒)以秒为单位,记录进程停止活动的时间,超过停止活动时间的进程将被回收
4上限指标1、上限指标不能小于零。
2、当选用的策略为cpu时,上限指标不能大于100(即最高100%占用率)
3、当选用的策略为memory时,指定为mb值,表示内存占用的最高上限
5检测时间标准共有两种方式:
1、byprocess,以进程时间计算(默认)
2、bynowtime,以启动当前时间计算
6回收动作共有两种方式:
1、kill,直接关闭释放进程(默认)
2、command,执行命令行操作
7相关动作命令当第6项回收动作为command时,此项为必输入项,表示要执行的 windows 命令行操作
8重新启用命令设置此项,则当关闭或执行动作命令后,尝试执行此命令
9计划强制关闭时间(小时)可以设定小时:分:秒(这个值前缀需要设置一个有效日期),代表每到此时此分此秒,则强制关闭进程

通过以上设置,我们可以灵活的对进程的关闭方式进行控制,以达到实际应用的目的。

其它设置

选择设置选项卡,如下图:

我们可设置窗口的透明度,另外可以设置两个选项:

1、只回收本程序启动时间以后的进程

2、只回收非激活窗口的进程, 指非操作系统显式的应用进程。

3、管理密码:默认值为111111,用于关闭应用程序等操作。

移动存储设备管理

这个选项如下图:

这是为移动设备存储数据库准备的一个选项,点击停止服务可以有效的、安全的移除存储设备,也可以继续启动服务。这个选项较少使用,也需要谨慎使用(因为它会尝试停止iis、ms sql server 数据库服务等)。

核心代码-计时器监控

		private void timer1_elapsed(object sender, system.timers.elapsedeventargs e)
		{
			datetime cur_now=system.datetime.now;
			int cur_hour=cur_now.hour;
			int cur_min=cur_now.minute;
			int cur_sec=cur_now.second;
		
			pc.categoryname="processor";
			pc.countername="% processor time";
			pc.instancename="_total";
			
//			pc.machinename="michaeljane";
			float pcv=pc.nextvalue();
			label7.text="cpu利用率:"+(pcv).tostring()+" %";
			cpubar.value=(int)(pcv);
 
			pcmem.categoryname="memory";
			pcmem.countername="available mbytes";
			pcmem.instancename=null;
 
//			richtextbox1.text=pcpu.nextvalue().tostring()+"\r\n";
			
 
			/*			system.diagnostics.performancecounter[] mypc; 
			system.diagnostics.performancecountercategory mycat = 
				new system.diagnostics.performancecountercategory("process");
			// remove the current contents of the list.
			// retrieve the counters.
			mypc = mycat.getcounters();
			// add the retrieved counters to the list.
			richtextbox1.text="";
			for (int i = 0; i < mypc.length; i++) 
			{ 
				richtextbox1.text+=(mypc[i].countername)+"\r\n";
			}
*/
 
//			float cpuload = pc.nextvalue();
            try
            {
                label7.text += "\r\n可用内存:" + pcmem.nextvalue().tostring() + "m";
            }
            catch (exception s)
            {
            }
			statusbar1.text=cur_now.tostring();  //显示当前时间
			process[] processes; //定义进程组
			processes = system.diagnostics.process.getprocesses(); //获得当前进程组
			process process;  //定义初始进程中间变量
			string _pname,_killstate="";   //定义进程名变量,及进程回收状态字符串
			bool _kill=false;  //是否要回收标志变量
			bool _phandle=checkbox2.checked;
			int _gcspan;  //时间差变量
			datetime _pdatetime,_checktime,_stdtime; //进程启动的时间变量和检测时间变量
			string[] _rv;    //接受检测结果的数组
			system.timespan _dd; //时间差的秒数变量
//			string[] _processid=new string[1000];
//			datetime[] _processlasttime=new datetime[1000];
//			int[] _processlastmem=new int[1000];
				for(int i = 0;i<processes.length-1;i++)
				{
					process= processes[i];  //获得当前进程
					_pname=process.processname.tolower();  //获得进程名并转为小写
                try
                {
                    _pdatetime = process.starttime;  //获得进程的启动时间
                }catch(exception e1)
                {
                    continue;
                }
					//				_rv=getsubvalueindex(listbox1,_pname,"|");  //得到要回收的用户指定进程
					for(int li=0;li<listbox1.items.count;li++)
					{
						_rv=listbox1.items[li].tostring().split('|');
						string ref_process=_rv[0].tolower().trim();
						int ref_span=int.parse(_rv[1].tostring());
						string ref_cl=_rv[2].tolower().trim();
						float ref_rank=float.parse(_rv[3].tostring());
						string ref_stdtime=_rv[4].tolower().trim();
						string ref_act=_rv[5].tolower().trim();
						string[] ref_cmd1=_rv[6].split('↙');
						string[] ref_cmd2=_rv[7].split('↙');
						string ref_closetime=_rv[8].trim();
						//				richtextbox1.text+=_rv[0]+_rv[1]+"\r\n";
					
						if(ref_process==_pname)  //如果是要回收的进程则进行处理
						{
							//如果在检测数组没有找到,则添加到检测数中
							int _curpoint=system.array.indexof(_processid,process.id);
							if(_curpoint<0)
							{
								_stdtime=process.starttime;
								if(ref_stdtime=="bynowtime")
								{
									_stdtime=system.datetime.now;
								}
								system.diagnostics.performancecounter pcm=new system.diagnostics.performancecounter("process","% processor time",_pname);
                            try
                            {
                                addarray(process.id, _stdtime, process.workingset, pcm);
                            }catch(exception e3)
                            {
 
                            }
								continue;
							}
                        //						richtextbox1.text+=((system.diagnostics.performancecounter)_processlastcpu[_curpoint]).nextvalue().tostring()+"\r\n";
                        try
                        {
                            float cur_rank = ((system.diagnostics.performancecounter)_processlastcpu[_curpoint]).nextvalue();
                            _checktime = system.datetime.now;  //检测时间为当前时间
                                                               //开始分析cpu策略
                            if (ref_cl == "cpu")
                            {
                                //如果当前进程的cpu占用率没有超过指定的上限,则重置最后的检测时间为当前时间,继续监测。
                                if (cur_rank < ref_rank)
                                {
                                    _processlasttime[_curpoint] = _checktime;
                                }
                            }
                        }catch(exception e2)
                        {
                            continue;
                        }
							//开始分析memory策略
							if(ref_cl=="memory")
							{
								float _curmem=process.workingset/(1024*1024);
								//							richtextbox1.text+=_pname+" "+_curmem.tostring()+"\r\n";
								//如果当前进程的内存占用没有超过指定的上限,则重置最后的检测时间为当前时间,继续监测。
								if(_curmem<ref_rank)
								{
									_processlasttime[_curpoint]=_checktime;
								}
							}
							_gcspan=ref_span;  //得到用户指定的回收时间差
							_kill=false;
							_pdatetime=_processlasttime[_curpoint]; //得到进程的数组最后指定时间
							_dd=_checktime-_pdatetime;     //时间差以检测时间 减去 进行启动时间
							//如果时间差大于回收指定时间则可以回收进程,kill变量为真
							if(checkbox1.checked)
							{
								//只回收本程序启动以后的进程时间
								if((_dd.totalseconds>_gcspan)&&(_starttime<_pdatetime))
								{
									_kill=true;
								}
							}
							else
							{
								if(_dd.totalseconds>_gcspan)
								{
									_kill=true;
								}
							}
							//如果初期标识为可以关闭该进程,并且策略为强制性关闭,则进行内存判断
							if((_kill)&&(ref_cl=="force"))
							{
								//如果内存有变化,则表示进程仍在活动,则不进行关闭,并更新检测内容
								int _curmem=process.workingset;
								label6.text=_curmem.tostring()+"  "+_processlastmem[_curpoint];
								if(_curmem!=_processlastmem[_curpoint])
								{
									_processlasttime[_curpoint]=_checktime;
									_processlastmem[_curpoint]=_curmem;
									_kill=false;
								}
							}
							//如果指定了强制关闭时间,则进行判断
							string close_tip="";
							if(ref_closetime!="")
							{
								datetime ref_cls=datetime.parse(ref_closetime);
								if((ref_cls.hour==cur_hour)&&(ref_cls.minute==cur_min)&&(ref_cls.second==cur_sec))
								{
									_kill=true;
								    close_tip="强制关闭计划启动,计划时间为:"+ref_closetime;
								}
							}
							//如果只回收死进程,而当前进程为激活的窗口的话,则不关闭
							if((_phandle)&&((int)process.mainwindowhandle!=0))
							{
								_kill=false;
							}
 
							//如果可以回收则在文本框中添加回收状态,并将进程关闭
							if(_kill)
							{
								if(!process.hasexited)
								{
									if(ref_act=="kill")
									{
										//								messagebox.show("has exited");
										_killstate=close_tip+".进程"+_pname+"已被回收,关闭策略为"+ref_cl+",动作为:"+ref_act+"。进程的启动时间为"+
											_pdatetime.tostring()+",检测时间为:"+_checktime.tostring()+
											",现已经超时"+(_dd.totalseconds-_gcspan).tostring()+
											"秒,回收时间单位是"+_gcspan.tostring()+"秒。"+
											"进程id:"+process.id.tostring()+
											"进程主窗口句柄:"+process.mainwindowhandle.tostring();
										process.kill();
										richtextbox1.appendtext(_killstate+"\r\n");
									}
									if(ref_act=="command")
									{
										//								messagebox.show("has exited");
										string _return="";
										for(int st=0;st<ref_cmd1.getlength(0);st++)
										{
											_return+=ref_cmd1[st]+" result:"+winexec(ref_cmd1[st],0).tostring()+"↙";
										}
										_killstate=close_tip+".进程"+_pname+"已被回收,关闭策略为"+ref_cl+",动作为:"+ref_act+",执行了命令:"+
											ref_cmd1+"。返回值为:"+_return+"。进程的启动时间为"+
											_pdatetime.tostring()+",检测时间为:"+_checktime.tostring()+
											",现已经超时"+(_dd.totalseconds-_gcspan).tostring()+
											"秒,回收时间单位是"+_gcspan.tostring()+"秒。"+
											"进程id:"+process.id.tostring()+
											"进程主窗口句柄:"+process.mainwindowhandle.tostring();
										richtextbox1.appendtext(_killstate+"\r\n");
										//										process.kill();
									}
									//清空当前进程检测数组元素
									_processid[_curpoint]=0;
									_processlasttime[_curpoint]=_checktime;
									_processlastmem[_curpoint]=0;
									_processlastcpu[_curpoint]=null;
								}//判断进程是否已经退出
							}
						}//if proecess
						else //如果没有找到进程名称,则二次判断任务是否提供了启动命令,如果提供,则运行它
						{
						}//end find process name
					}//li
				}//for
			processes = system.diagnostics.process.getprocesses(); //获得当前进程组
			for(int ali=0;ali<listbox1.items.count;ali++)
			{
				_rv=listbox1.items[ali].tostring().split('|');
				string ref_process=_rv[0].tolower().trim();
				int ref_span=int.parse(_rv[1].tostring());
				string ref_cl=_rv[2].tolower().trim();
				float ref_rank=float.parse(_rv[3].tostring());
				string ref_stdtime=_rv[4].tolower().trim();
				string ref_act=_rv[5].tolower().trim();
				string[] ref_cmd1=_rv[6].split('↙');
				string ref_start_cmd=_rv[7];
				string[] ref_cmd2=_rv[7].split('↙');
				bool _find=false;
				if(ref_start_cmd!="")
				{
					for(int i = 0;i<processes.length-1;i++)
				    {
					  process= processes[i];  //获得当前进程
					  string cur_pname=process.processname.tolower();  //获得进程名并转为小写
						if(cur_pname==ref_process)
						{
							_find=true;
						}
				    }
					if(!_find)
					{
						string _return="";
						for(int st=0;st<ref_cmd2.getlength(0);st++)
						{
							_return+=ref_cmd2[st]+" result:"+winexec(ref_cmd2[st],0).tostring()+"↙";
						}
						_killstate="进程"+ref_process+"尝试启动,关闭策略为"+ref_cl+",动作为:"+ref_act+",启动命令为:"+
							ref_cmd2+"。返回值为:"+_return+"。";
						richtextbox1.appendtext(_killstate+"\r\n");
					}
				}
			}//end for listbox
 
		}

小结

开发这款小工具,也是初识 system.diagnostics(与系统进程、事件日志和性能计数器进行交互的类)的一个过程。

到此这篇关于基于c#实现进程回收管理工具的文章就介绍到这了,更多相关c#进程回收管理内容请搜索代码网以前的文章或继续浏览下面的相关文章希望大家以后多多支持代码网!

(0)

相关文章:

版权声明:本文内容由互联网用户贡献,该文观点仅代表作者本人。本站仅提供信息存储服务,不拥有所有权,不承担相关法律责任。 如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至 2386932994@qq.com 举报,一经查实将立刻删除。

发表评论

验证码:
Copyright © 2017-2025  代码网 保留所有权利. 粤ICP备2024248653号
站长QQ:2386932994 | 联系邮箱:2386932994@qq.com