How to Check Process Running in Windows

Bikash Panda
2 min readJun 7, 2021

Introduction

To Check Process Running in Windows using PHP, we have to use PHP tasklist command with exec() function.

Originally: https://phpcoder.tech/how-to-check-process-running-in-windows/

Complete Code to Check Process Running in Windows

<?php

// show tasks, redirect errors to NUL (hide errors)

exec(“tasklist 2>NUL”, $task_list);

echo “<pre>”;

print_r($task_list);

?>

Code Explanation:

  • On the above code, we use the PHP tasklist command to see what processes are running in Windows.
  • exec is the PHP inbuilt function used to execute an external program and return the last value, if there is no return then it returns the NULL value.
  • In the last line we print the $task_list variable where we store the list of running processes in windows.

Output:

You can check it by running it on you local machine using XAMP or WAMPP.

Also Read: Best PHP IDE Code Editor in 2021 [Updated]

How to Kill Windows Process Using PHP

<?php

exec(“taskkill /F /IM taskName.exe 2>NUL”);

?>

Code Explanation:

On the above code, we use the same exec() function to execute the PHP tasklist command and by using taskName from the list we can kill the process.

Here is the complete explanation about how we can check process running in windows and also kill by using the command.

To know more you can check PHP: getmypid — Manual.

Also Read:

Happy Coding..!

--

--

Bikash Panda

I am a web application developer. FB Community: @mrpandatech, Twitter: @phpcodertech My PHP problem-solving site http://phpcoder.tech