Skip to content
This repository has been archived by the owner on Mar 14, 2022. It is now read-only.

Lightweight, easy-to-use command-line task manager. It's time to ditch taskkill and tasklist.

Notifications You must be signed in to change notification settings

seikosantana/process-manager

Repository files navigation

ProcessManager

Lightweight, easy-to-use command-line task manager. It's time to ditch taskkill and tasklist.

PRM is the main project. It is the command-line task manager, written in C#. Needs many more improvements.
SUDO is a standalone that summons PRM, to execute something with administrator priviledge, mimicking Linux's SUDO.

SYS (abandoned) is side project, which meant to simplify calling shell commands from prm. SYS will might be removed in near future.

Purpose

This project demonstrates abilities of .NET Framework (and possibly .NET Compatible) in managing processes.
Managing processes means starting and terminating processes with rules. System.Diagnostics provides powerful yet simple way for mostly all requirements.

At this point, we can provide our own commands that can be run through shells (such as cmd, etc):

  • Starting processes
  • Starting processes as administrator
  • Terminating processes
  • Locating processes with File Explorer
  • Locating processes in command prompt
  • Summarizing resource usage

By providing all those capabilities in PRM, I would say that PRM has met all minimum functionalities as a Task Manager, excluding uncommonly needed things, but also extends the shell capabilities.

Cross Platform PRM

Built on top of .NET Core 3.1

The project prm-core found in the solution is based on .NET Core. Unlike the original prm which is based on .NET Framework 4.7, prm-core is expected to be cross-platform. The cross-platform prm has been tested on WSL with Ubuntu 18.04 distro and has been running with limitations. Currently, prm-core has not been modified, and still running cmd commands instead of bash commands on Linux-64 platform.

Limitations

Limitiations while using .NET Core 3.1 for prm implementation is the class Performance Counter which does not present on .NET Core. This assembly is available on .NET Framework only, which is why prm cannot be migrated fully to .NET Core 3.1, which is related to the 'USAGE' command of prm, since 'USAGE' requires Performance counter to monitor resources running on the machine.

Issues

This project is developed in Windows 10 machine, where console windows can be maximized and even full screen. PRM may require more console width for now, especially when monitoring resource usage, which will cause issues in older version of windows where maximum width of console is limited to half of the screen size.

Also, relying fully on .NET for this purposes, at some point, is not really a good idea. Getting file location using .NET Framework would oftenly get us 'Access Denied'. Using services and Windows' DLLs will work for this.

I myself prefer using PRM instead of taskkill, tasklist, and Windows Task Manger. It's reliable and easy to use anyway. I am looking forward to port prm to Linux (Ubuntu), at least with its basic functionalities. I hope this project can give good examples, showing how to manage (start, terminate) processes from your own application.

About

Lightweight, easy-to-use command-line task manager. It's time to ditch taskkill and tasklist.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages