The command to get information about the SQL server process:
Get-Process SQLSERVR
The command to get information for any process starting with S:
Get-Process S*
To get the amount of virtual memory that the SQLServer process uses:
Get-Process SQLSERVR | Select-Object VM
To get the working set size of a process, in kilobytes:
Get-Process SQLSERVR | Select-Object WS
, , :
Get-Process SQLSERVR - Select-Object PM
, , :
Get-Process SQLSERVR - Select-Object NPM
( , , ):
Get-process SQLSERVR | Select-Object CPU
Get-Process, .