SVCHOST.EXE (LocalSystemNetworkRestricted) is using almost 100% disk usage?

2

2

I'm not running any other program, only Task Manager and Resource Monitor. It made my machine heavily non-responsive, even cursor sometimes jumps here and there and it's not accepting any keyboard input, even CTRL+ALT+DEL.

In Task Manager it says 47% (it goes between 46%-50%) because I have two disk, the other one has zero activity. Notice my CPU and RAM is idle Is there any way I can pinpoint what is actually causing the problem and how to solve it? What does svchost.exe (LocalSystemNetworkRestricted) do?

High Disk Usage

UPDATE: Visited this question, but it doesn't apply to me since I'm not running (or having) Chrome nor Skype.

UPDATE2: Disk usage Note that it's constantly reading.

Nur

Posted 2015-10-13T11:20:28.747

Reputation: 820

1Are you saying its using 100% CPU, or 47% of disk bandwidth? 7.9MB/s is pretty small for most modern hard disks, and SuperFetch could be accounting for it. The process is only using 0.4% CPU in your image. Note that the 47% has nothing to do with the number of disks you have, but on the number of threads the system thinks it can have writing data to disk semi-concurrently without a drop in performance. – Frank Thomas – 2015-10-13T11:59:50.283

@FrankThomas Not CPU, it only 5% as seen on screenshot, but 100% disk bandwidth. I have two disk, that's way it only reported 47% (task manager accounts for two drives), but the disk usage on C: and D drive is 100% (two partition on a drive), and on F: drive it's 0%. Yes but I don't have a modern PC, it 2012-ish, and it's not the number that matter, is that I can't do anything else if that process locking my C: drive at 100%. – Nur – 2015-10-13T12:18:54.657

7.9MB/s is small for 2008 models. try disabling Superfetch, and if you are playing audio, stop it, and see if that has any impact. some of the HD audio services for windows are getting out of hand in terms of performance impact. – Frank Thomas – 2015-10-13T12:37:54.007

Install the Win10 WPT (part of the Windows 10 SDK: https://dev.windows.com/en-us/downloads/windows-10-sdk) next time you see the disk usage, capture a trace with xperf and share the compressed ETL file: http://pastebin.com/AyxAVU60

– magicandre1981 – 2015-10-13T16:13:27.083

@FrankThomas I see but I don't really know whether 7.9MB/s is small or not, it's just that my PC was fine two days ago with disk usage is 5-30% for any activity, MS Office, browsing, even 3D games, idling at 0-3%. Tried disabling SuperFetch but it has no effect, there are like 20 services other than SuperFetch under svchost, can you help me pinpoint which one is constantly reading from disk? – Nur – 2015-10-14T12:37:02.850

@magicandre1981 There are several features, since I only need xperf then I just want the 'Windows Performance Toolkit' I suppose? – Nur – 2015-10-14T12:41:53.747

you can always check out what it is actually reading with Sysinternals FileMon. it may give you some valueable clues. Also check the SMART disk health stats for that drive, to see if its health is on the decline. – Frank Thomas – 2015-10-14T12:55:10.240

@magicandre1981 here is the ETL file http://1drv.ms/1k4zLqu

– Nur – 2015-10-14T12:58:16.803

@FrankThomas Good to hear that I can trace it, but can you guide me how to do it, a link to a tutorial for both process? – Nur – 2015-10-14T13:00:05.633

@FrankThomas I checked the SMART status and all is OK. perfmon already give a good information that svchost.exe (LocalSystemNetworkRestriction) is the culprit, so I guess this is it, it's just become glitchy and won't stop loop reading from disk. I've contacted MS Support and no result whatsoever. I'll spend the night refreshing my PC then hope it will solve my problem.. – Nur – 2015-10-14T14:56:25.580

thats good news. Your best bet will be to use ProcMon (from Technet/Sysinternals) to determine what service is causing the activity, and what they are accessing. here is some intro info on procmon: http://blogs.technet.com/b/askperf/archive/2007/06/01/troubleshooting-with-process-monitor.aspx

– Frank Thomas – 2015-10-14T20:24:19.830

@FrankThomas I already posted what causes the activity ;) – magicandre1981 – 2015-10-15T04:10:24.270

Answers

5

The trace was a bit too short (only 5s) so I can only tell you what I see from those 5 seconds.

Most of the Disk IO comes from the superfetch service which reads data from your slow 5400rpm TOSHIBA MK5059GSXP HDD and from the kernel which reads data from the pagefile because you only have 4GB of RAM.

The best way to solve it would be to replace the slow HDD with a SSD.

magicandre1981

Posted 2015-10-13T11:20:28.747

Reputation: 86 560

Thank you. Just for reference how long should I capture xperf in case this problem happen again? I already refreshed my PC, now every problem is gone for good, now everything open in seconds (2 to 5 seconds!) not minutes anymore. Yes my PC specification is old and low but it always really snappy because I only do little office work and browsing in this PC, 3D and heavy stuff on another one. That was the first time I experienced heavy lag. – Nur – 2015-10-15T20:02:21.117

you should capture 45s till 2 minutes to have a better overview what happens on your system. After the refresh, all desktop programs were removed, after you install them again and reuse them, Superfetch will start caching them again after some time – magicandre1981 – 2015-10-16T04:31:12.567

I see, so it might come back then, I've installed all the program from previous installation.. I found a similar problem http://superuser.com/questions/914329/windows-8-1-100-disk-usage-by-ntoskrnl-exe.. Is it possible to decipher the info from diagdiskfileIO.etl by myself so I could know what might be the problem or the file superfetch trying to access?

– Nur – 2015-10-16T12:50:02.063

1

Microsoft posted a video: https://channel9.msdn.com/Shows/Defrag-Tools/Defrag-Tools-44-WPT-DiskIO-Analysis

– magicandre1981 – 2015-10-17T06:23:43.343