How to Check Process Running in Windows
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:
- Set PHP Error Reporting Into The PHP File
- How to Get Current Date and Time In JavaScript
- How to Get Input Value From User in PHP?
- Complete Guide PHP Error Log
Happy Coding..!