Process Explorer(微软官方)辅助测试的利器Windows下强大的任务管理器

  推荐一款 www.microsoft.com (微软官方)辅助测试的利器Windows下强大的任务管理器

Process Explorer 是一款增强型的任务管理器,你可以使用它方便地管理你的
程序进程,能强行关闭任何程序(包括系统级别的不允许随便终止的“顽固”进程)。除此之外,它还详尽地显示计算机信息:CPU、内存使用情况,DLL、句柄
信息.

 

Process Explorer v11.3

By Mark Russinovich

Published: November 19, 2008

Introduction

Ever wondered which program has a particular file or directory open? Now you can find out. Process Explorer shows you information about which handles and DLLs processes have opened or loaded.

The Process Explorer display consists of two sub-windows. The top window always shows a list of the currently active processes, including the names of their owning accounts, whereas the information displayed in the bottom window depends on the mode that Process Explorer is in: if it is in handle mode you'll see the handles that the process selected in the top window has opened; if Process Explorer is in DLL mode you'll see the DLLs and memory-mapped files that the process has loaded. Process Explorer also has a powerful search capability that will quickly show you which processes have particular handles opened or DLLs loaded.

The unique capabilities of Process Explorer make it useful for tracking down DLL-version problems or handle leaks, and provide insight into the way Windows and applications work.



Download Process Explorer (1.6 MB)

 绿色汉化版下载地址:http://www.crsky.com/soft/1074.html

 

转自 卖烧烤的鱼博客 http://www.cnblogs.com/mayingbao/archive/2008/12/04/1347367.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
要编写类似于Windows 7的任务管理器,我们需要使用Python中的一些库。 首先,我们需要使用psutil库来获取系统进程信息。然后,我们可以使用Tkinter库来创建GUI界面。 以下是一个简单的Python程序,可以创建类似于Windows 7的任务管理器: ```python import psutil import tkinter as tk class TaskManager: def __init__(self, root): self.root = root self.root.title("Task Manager") self.create_widgets() def create_widgets(self): # Create process listbox self.process_listbox = tk.Listbox(self.root, width=70) self.process_listbox.pack(side=tk.LEFT, fill=tk.BOTH, expand=True) # Create scrollbar for process listbox scrollbar = tk.Scrollbar(self.root) scrollbar.pack(side=tk.RIGHT, fill=tk.Y) # Attach scrollbar to process listbox self.process_listbox.config(yscrollcommand=scrollbar.set) scrollbar.config(command=self.process_listbox.yview) # Add processes to process listbox for proc in psutil.process_iter(): try: pinfo = proc.as_dict(attrs=['pid', 'name']) self.process_listbox.insert(tk.END, str(pinfo['pid']) + " | " + pinfo['name']) except (psutil.NoSuchProcess, psutil.AccessDenied, psutil.ZombieProcess): pass # Create refresh button refresh_button = tk.Button(self.root, text="Refresh", command=self.refresh) refresh_button.pack() def refresh(self): # Clear process listbox self.process_listbox.delete(0, tk.END) # Add processes to process listbox for proc in psutil.process_iter(): try: pinfo = proc.as_dict(attrs=['pid', 'name']) self.process_listbox.insert(tk.END, str(pinfo['pid']) + " | " + pinfo['name']) except (psutil.NoSuchProcess, psutil.AccessDenied, psutil.ZombieProcess): pass # Create root window root = tk.Tk() # Create task manager task_manager = TaskManager(root) # Run root window root.mainloop() ``` 这个程序使用psutil库获取系统进程信息,并使用Tkinter库创建GUI界面。它创建一个列表框,其中包含当前正在运行的所有进程,以及一个刷新按钮,用于更新进程列表。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值