shamiur41
shamiur41

Reputation: 1

Windows Powershell Command to show PHP process

I'm new in PHP. I'm following PHP with MySQL Beyond the basics Lynda tutorial. They used another command line environment on mac OS. But I'm using Windows powershell. They run the command ps aux grep httpd on those environment. Which is not for windows powershell.
What is the alternate windows power shell command for ps aux grep httpd?

Upvotes: 0

Views: 389

Answers (1)

David
David

Reputation: 6571

Use the get-process cmdlet

get-process httpd

You can also use wildcards. For example, if you want all the process names that begin with h:

get-process h*

Upvotes: 1

Related Questions