Databases Reference
In-Depth Information
When you execute the Get - Process cmdlet, the default display of a process is a table that includes the
following columns:
Handles
NPM(K)
PM(K)
WS(K)
VM(M)
CPU(s)
ID
ProcessName
However, if you only want to view some of the columns in the output, use the cmdlet Select - Object ,as
shown here (see Figure 2-37):
Get-Process | Select-Object ID, Processname
Figure 2-37
With Select - Object , you can select unique values, as shown here (see Figure 2-38):
Get-Process | Select-Object Processname -unique
Figure 2-38
Search WWH ::




Custom Search