Finding out what user Apache is running as in windows?

apache

Solution

By default the Apache services are registered to run as the system user (the LocalSystem account).

The section "Running Apache as a Service" in the help documentation below might help you configure Apache the way that you want to.

http://httpd.apache.org/docs/2.0/platform/windows.html

Problem

I am new to Windows and I am trying to figure out what user Apache is running on. In Linux I had a simple command `ps aux | grep apache`. How do I find that out in windows? Is it some where in httpd.conf file?

Original source