PoshCode Archive  Artifact [aa2baa24a7]

Artifact aa2baa24a7b1d06cb958b32b61fb2bc80b57065ca42ab397855a291589e82550:

  • File Get-ProcessCount.ps1 — part of check-in [5590123b99] at 2018-06-10 13:58:20 on branch trunk — Get-ProcessCount returns the number of running processes on local or remote machine. If it can’t find the requested process, it tries to guess what you want. (user: unknown size: 1642)

# encoding: ascii
# api: powershell
# title: Get-ProcessCount
# description: Get-ProcessCount returns the number of running processes on local or remote machine. If it can’t find the requested process, it tries to guess what you want.
# version: 0.1
# type: function
# license: CC0
# function: Get-ProcessCount
# x-poshcode-id: 564
# x-derived-from-id: 572
# x-archived: 2008-09-19T16:44:04
#
#
# Get-ProcessCount uses 2 main variables, server and process name.
# Process name is typically the end exe, such as "svchost.exe"
# Will accept unnamed args (Get-ProcessCount servername processname)
# or named args (Get-ProcessCount -Computer servername -Process processname)
Function Get-ProcessCount([string]$process, [string]$computer = "localhost", [switch]$guess) {
$i = 0
$procList = Get-WmiObject -Class Win32_Process -Computer $computer
	foreach($proc in $procList) {
		If($proc.name -eq $process)
		{
			$i++
		}
	}
	
	Function Try-Guessing([string]$process) {
		foreach($proc in $procList) {
			If($proc.Name -match $process) {
				$possible += @($($proc.name))
				}
		}
		If($possible.Count -ge 1) {
			$uniq = $possible | Get-Unique
			foreach($proc in $uniq) {
				Write-Host "Did you mean $($proc)?" -ForeGroundColor Magenta
				}
		} else {
		Write-Host "I tried guessing, but I couldn't find $($process) that way, either. Sorry." -ForeGroundColor Green
		}
	}	
If($i -ge 1) {
	Write-Host "There are $i instances of $process on $computer" -ForegroundColor Green
	} else {
	Write-Host "0 instances of $process found on $computer" -ForegroundColor Green
	Try-Guessing $process
	}
}