Oliver Scheer
Weitere Webcasts dieser Serie: |
PowerShellPraxis
get-process |
where-object {$_.WS -ge 1048576} |
where-object {$_.processname -ne "powershell"} |
sort-object WS –descending |
convertto-html -property Name,WS > c:\Inetpub\wwwroot\ps.html
If this script is saved to “c:\powershell\check_memory.ps1” then it can be run from the command prompt by typing:
powershell c:\powershell\check_memory