Summary: Learn how to use wildcard characters and Windows PowerShell to find processes.
How can I use Windows PowerShell to easily see all processes that contain the letters SV in the process name?
Use the Get-Process cmdlet and a simple wildcard pattern, for example:
gps *sv*
Note gps is an alias for Get-Process.