How to locate memory use of specific Windows solutions?
Job Manager reveals the total memory use of svchost.exe. Exists a means to watch the memory use of specific solutions?
Note this resembles Finegrained performance reporting on svchost.exe
This is getting involved in stackoverflow region, yet if you can acquire per - string memory statistics you might have the ability to about associate that to the specific service dlls by matching them approximately the dlls detailed in the string pile. Means way too much for my little sysadmin mind, however.
You can make use of the constructed - in tasklist
command and also filter by service name (/fi
button), as an example :
tasklist /fi "services eq TermService"
Output :
Image Name PID Session Name Session# Mem Usage ========================= ======== ================ =========== ============ svchost.exe 2940 Console 0 7.096 K
If you do not recognize a name, you can detail them by running this declaration :
tasklist /svc /fi "imagename eq svchost.exe"
It details all solutions organized by svchost.exe, as an example :
Image Name PID Services ========================= ======== ============================================ svchost.exe 632 DcomLaunch svchost.exe 684 RpcSs svchost.exe 748 Dhcp, Dnscache svchost.exe 788 LmHosts, W32Time svchost.exe 804 AeLookupSvc, AudioSrv, Browser, CryptSvc, dmserver, EventSystem, helpsvc, lanmanserver, lanmanworkstation, Messenger, Netman, Nla, RasMan, Schedule, seclogon, SENS, ShellHWDetection, TrkWks, winmgmt, wuauserv, WZCSVC svchost.exe 1140 ERSvc svchost.exe 1712 RemoteRegistry svchost.exe 196 W3SVC svchost.exe 2940 TermService svchost.exe 2420 TapiSrv
Services aren't always organized by svchost.exe
. So, if you can not locate a service filtering system by the implementing documents name, simply run tasklist /svc
. It will certainly show all solutions.
Related questions