See the Current Connections to an IIS Site

Here’s a quick handy PowerShell command that will show you the current connections to an IIS site.

Change the below in red to match your environment J

$NameOfServer = “YourServerName

$IISSite = “IISWebsiteName

Get-Counter “$NameOfServerweb service($IISSite)current connections”

About the author