Rexxer

Some tips for me and other

Windows + powershell + handles count

Just a .ps1 script to find handle eaters.

$s = [WmiSearcher]’Select * from Win32_Process where Handlecount > 1000′
$s.Get() |sort handlecount |ft handlecount,__path,name -auto

Comments are currently closed.