Last Update: October 21, 2012
PowerShell Version: 2.0 and 3.0
Libraries:
- PSv3.psm1
.SYNOPSIS
Returns process information on local and remote clients.
.DESCRIPTION
Returns process information on local and remote clients, but includes
the computer name.
.PARAMETER ComputerName
The name or names of the computers that you want to return process
information from.
.PARAMETER Quiet
Suppresses error messages.
.PARAMETER FullDetail
Returns the entire process object. The default will return the
same information as Get-Process.
.EXAMPLE
Get-Process2 -ComputerName "Srv01", "Svr2", "Svr3"
Returns the same information as Get-Process, but also includes the
name of the source the data came from.
.EXAMPLE
Get-Process2 -ComputerName "Srv01", "Svr2", "Svr3" -Quiet
Returns the same information as Get-Process, but also includes the
name of the source the data came from. Any errors generated while
attempting to contact the clients will be suppressed.
.EXAMPLE
Get-Process2 -ComputerName "Srv01", "Svr2", "Svr3" -FullDetail
Returns the entire Process object for each object on each server contacted.
This will return a very large amount of data.
.NOTES
-------------------------------------------------------------------------------
Provided as is with no warranty or support.
Jason Yoder, MCT - MCTExpert, Inc.
-------------------------------------------------------------------------------
No comments:
Post a Comment