Software To Show Number of Current Processes ?


  1. Posts : 242
    Windows 10
       #1

    Software To Show Number of Current Processes ?


    I was wondering if their is some software that would show the number of processes running, the same as shown in task manager, performance.

    I would like something that would show the current number in the tray.
    Can anyone help me with this ?
    Thank you.
      My Computer


  2. Posts : 23,555
    Win 10 Home ♦♦♦19045.4474 (x64) [22H2]
       #2

    mike888 said:
    I was wondering if their is some software that would show the number of processes running, the same as shown in task manager, performance.

    I would like something that would show the current number in the tray.
    Can anyone help me with this ?
    Thank you.


    I'm not sure if it has tray abilities... but Process Explorer is the Cadillac of Task Managers, so to speak.

    https://learn.microsoft.com/en-us/sy...ocess-explorer


    Or this, maybe...

    https://learn.microsoft.com/en-us/sy...nloads/procmon
      My Computer


  3. Posts : 18,034
    Win 10 Pro 64-bit v1909 - Build 18363 Custom ISO Install
       #3

    Hello @mike888,

    This will give you the information you want as well as other information.

    Copy & Paste the following ALL at once into a CMD Prompt and press Enter.

    Code:
    
    @echo off
    echo.
    PowerShell ^
         $Tot=((Get-Process) ^| Measure-Object).Count; ^
         $List=(Get-Process  ^| Sort-Object -Property ProcessName ^| Format-Table -AutoSize ^
         @{L='Process Name'        ;E={;if([string]::IsNullOrWhiteSpace($_.ProcessName))        {'-'} else {$_.ProcessName}}}, ^
         @{L='Handles'             ;E={;if([string]::IsNullOrWhiteSpace($_.Handles))            {'-'} else {$_.Handles}}}, ^
         @{L='NPM(K)'              ;E={;if([string]::IsNullOrWhiteSpace($_.NPM))                {'-'} else {$_.NPM}}}, ^
         @{L='PM(K)'               ;E={;if([string]::IsNullOrWhiteSpace($_.PM))                 {'-'} else {$_.PM}}}, ^
         @{L='WS(K)'               ;E={;if([string]::IsNullOrWhiteSpace($_.WS))                 {'-'} else {$_.WS}}}, ^
         @{L='CPU(S)'              ;E={;if([string]::IsNullOrWhiteSpace($_.CPU))                {'-'} else {$_.CPU}}}, ^
         @{L='ID [PID]'            ;E={;if([string]::IsNullOrWhiteSpace($_.Id))                 {'-'} else {$_.Id}}}, ^
         @{L='SI'                  ;E={;if([string]::IsNullOrWhiteSpace($_.SI))                 {'-'} else {$_.SI}}}, ^
         @{L='Responding'          ;E={;if([string]::IsNullOrWhiteSpace($_.Responding ))        {'-'} else {$_.Responding }}}, ^
         @{L='Has Exited'          ;E={;if([string]::IsNullOrWhiteSpace($_.HasExited))          {'-'} else {$_.HasExited}}}, ^
         @{L='Priority Class'      ;E={;if([string]::IsNullOrWhiteSpace($_.PriorityClass))      {'-'} else {$_.PriorityClass}}}, ^
         @{L='Base Priority'       ;E={;if([string]::IsNullOrWhiteSpace($_.BasePriority))       {'-'} else {$_.BasePriority}}}, ^
         @{L='Total Processor Time';E={;if([string]::IsNullOrWhiteSpace($_.TotalProcessorTime)) {'-'} else {$_.TotalProcessorTime}};A='Right'} ^| ^
    Out-String -Width 1000).Trim("""`r`n"""); ^
         if ($List.Length) {Write-Host """`n`n `n`n--- Process(s) [$Tot] - Sorted by [ProcessName] ---`n`n `n`n$List"""} else ^
                           {Write-Host """`n`n `n`n--- NO Process(s) Available ---"""; exit 1} >> %Temp%\A.txt
         for /f "delims=" %i in (%Temp%\A.txt) do echo. %i
         del %Temp%\A.txt
    
    echo. & echo ^>Press ANY key to EXIT . . . & pause >nul & Exit
    
    
    

    I hope this helps.
      My Computer


 

  Related Discussions
Our Sites
Site Links
About Us
Windows 10 Forums is an independent web site and has not been authorized, sponsored, or otherwise approved by Microsoft Corporation. "Windows 10" and related materials are trademarks of Microsoft Corp.

© Designer Media Ltd
All times are GMT -5. The time now is 05:18.
Find Us




Windows 10 Forums