powershell, programming

Listing IIS Application Pool Memory usage in PowerShell

Open Powershell as an Administrator on the web server, then run: $apmem= gwmi -ComputerName localhost -NS ‘root\WebAdministration’ -class ‘WorkerProcess’ | […]