2 lines
134 B
Plaintext
2 lines
134 B
Plaintext
|
# Find the processes that use more than 1000 MB of memory and kill them
|
||
|
Get-Process | Where-Object { $_.WS -gt 1000MB } | Stop-Process
|