IIS6 Application Pool Status

I was wondering if there is a way to capture the state of an IIS6 application pool using DirectoryEntry in C #?

I have seen people use AppPoolState for IIS7, but is there an equivalent that will work for IIS6? Or do I need to use a different namespace?

EDIT: Is there anything that displays the status bar? AppPoolState looks like it only accepts integers.

+4
source share
1 answer

It looks like you would use the same property: Check application pool status (IIS 6) in C #

+2
source

All Articles