Procdump needs to be installed on the system. (procdump -i). [shell] Import-Module WebAdministration $apps = dir IIS:\AppPools\ | Select-Object -expand name Write-host "Application Pools on this server:" -foregroundcolor red -backgroundcolor yellow Write-Output $apps $appname = Read-Host "Enter AppPool Name" $apid = Get-WmiObject -NameSpace ‘root\WebAdministration’ -class ‘WorkerProcess’ -ComputerName ‘LocalHost’ | Where-Object {$_.AppPoolName -like "$appname"} | Select-Object […]
Read More →