Author Topic: CPU usage 100% Windows 7  (Read 9387 times)

0 Members and 1 Guest are viewing this topic.

Offline arkredneck

  • Newbie
  • *
  • Join Date: Dec 2015
  • Posts: 4
  • Karma: 0
    • View Profile
CPU usage 100% Windows 7
« on: December 28, 2015, 01:39:18 pm »
Windows 7, 32 bit.  CPU usage is 98 to 100 % with no programs running.  Task manager shows svchost(netsvcs) pid1204.  Is there a way of getting rid of that process?  My computer is running very slow.   Joe

Offline Boggin

  • Global Moderator
  • Hero Member
  • *****
  • Join Date: Jul 2014
  • Posts: 10182
  • Location: UK
  • Karma: 122
    • View Profile
Re: CPU usage 100% Windows 7
« Reply #1 on: December 28, 2015, 02:53:55 pm »
Boot up into Safe Mode with Networking, download and run ESET Free Online Scanner.

http://www.eset.com/us/online-scanner/

Check the two PuP boxes then click on Advanced and check all of the boxes with Archives being optional.

There's also a box to check for auto uninstall when done.

If ESET comes up clean then work your way through this tutorial -

http://www.wintips.org/how-to-fix-svchost-exe-netsvcs-memory-leak-or-high-cpu-usage-problems/
« Last Edit: December 28, 2015, 03:21:53 pm by Boggin »

Offline Jethro Bodine

  • Newbie
  • *
  • Join Date: Dec 2015
  • Posts: 29
  • Karma: 4
    • View Profile
Re: CPU usage 100% Windows 7
« Reply #2 on: December 31, 2015, 01:24:47 am »
Follow that link from Boggin , and it will almost certainly fix your problem
I only wish I knew of it sooner .... it would have saved me hours of work

See my posts in the thread  " Resource-hogging service  ...etc "

Offline Shane

  • Administrator
  • Hero Member
  • *****
  • Join Date: Sep 2011
  • Posts: 9281
  • Location: USA
  • Karma: 137
  • "Knowledge should be shared not hidden."
    • View Profile
Re: CPU usage 100% Windows 7
« Reply #3 on: January 07, 2016, 09:07:16 am »
You can grab my technicians toolbox from my site and in it open the svchost services to see what services are running on that one. I am willing to bet it is Windows updates doing its check. trying turning off windows updates (Set it to never check) and see if that fixes the CPU problem.

Shane

makinero

  • Guest
Re: CPU usage 100% Windows 7
« Reply #4 on: January 07, 2016, 11:03:21 am »
Most of the time it is due to windows updates using Background Intelligent Transfer Service (BITS) .. BITS uses binpath= “c:\windows\system32\svchost.exe -k netsvcs”.. Simply by disabling windows updates or by disabling BITS service you can get rid of bandwidth eating. But disabling Windows updates is not recommended, since windows operating system updates /security updates will protect your pc from known vulnerabilities that are discovered time to time. You can use third party utility   to limit/schedule downloads as you wish.

Offline Julian

  • "Professional Googler"
  • Global Moderator
  • Hero Member
  • *****
  • Join Date: Jun 2015
  • Posts: 1325
  • Location: USA, New Mexico
  • Karma: 38
    • View Profile
Re: CPU usage 100% Windows 7
« Reply #5 on: January 07, 2016, 07:09:36 pm »
easy way to kill bits from hogging resources at that moment is open up notepad type in this script save as .ps1 and run with powershell.

Code: [Select]
import-module bitstransfer

Get-BitsTransfer | Remove-BitsTransfer
Julian