iis - Powershell List Active HTTP Requests -
in windows 2008 there appcmd can used so:
appcmd list request appcmd list request /apppool.name:defaultapppool
is there way accomplish in powershell?
there way.
i use following:
get-website | {$_.name -eq $website} | get-webrequest
the variable $website
web site name get-website -name "sitename"
doesn't seem work.
Comments
Post a Comment