Quantcast
Channel: PowerShell.com – PowerShell Scripts, Tips, Forums, and Resources
Viewing all articles
Browse latest Browse all 8583

i want to be able to close out all process that use less than 10 of the cpu strenght

$
0
0

So far i have the below

after chrome list is created i want the machine to just delete all the chrome pages that are on the list. 

enter-pssession -name 

Get-Process | Where-Object {$_.cpu -lt 10} |Format-List $_.chrome 


Viewing all articles
Browse latest Browse all 8583

Trending Articles