Source Code and Samples

Friday 9 February 2007

Stop all nonresponsive applications

Description

You can stop all nonresponsive applications with powershell

Source Code

Get-Process Where-Object -FilterScript {$_.Responding -eq $false} Stop-Process

No comments: