Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
아래 포스트에서는 PowerShell을 사용해서 working set 크기가 특정값 이상인 프로세스의 리스트를 구하는 cmdlet을 설명하고 있습니다. 그리고 Terabyte 와 Petabyet를 지원한다고 합니다.
아래와 같은 명령을 사용하면 됩니다.
PS> Get-Process |where {$_.Workingset –ge ?????}
아래와 같이 하면 working set이 15MB 이상인 프로시스 리스트를 구해줍니다.
PS> Get-Process |where {$_.Workingset –ge 15mb}
TB & PB
https://blogs.msdn.com/powershell/archive/2010/01/07/tb-pb.aspx