Some relatively simple code helps us understand svchost processes. You will need a large screen to display the output:$global:svchost = get-wmiObject win32_process -filter "name='svchost.exe'"$global:win32_handle = $svchost | foreach { gwmi -query "Select * from win32_service where processID = $($_.handle)" }$global:Sort_handle = $win32_handle | sort processID, Name $global:Sort_svchost = $svchost | sort processID$Sort_handle | format-table processID,name,state, startmode,Started,AcceptStop,Description -AutoSize$Sort_svchost | format-table ProcessID,ThreadCount,HandleCount,WS,VM,KernelModeTime,ReadOperationCount,ReadTransferCount,OtherTransferCount...