Windows Vista Tips

Windows Vista Tips > Newsgroups > Windows Update > Windows update 100% cpu at every boot killing me

Reply
Thread Tools Display Modes

Windows update 100% cpu at every boot killing me

 
 
Jim
Guest
Posts: n/a

 
      03-01-2007
Every reboot, windows update runs 100% cpu for 5 7 minutes.
if I turn off automatic updates it doesnt happen.
(but then...no updates. so not a solution).

its xp pro.

I renamed windowsupdate.log (old) because I thought 1500k was
pretty big, might have been slowing it down. this had no effect.

windows update from IE6 and IE7 works fine.

I dont understand the log and I dont know why it ramps the cpu
every time I reboot this machine. this has been going on for
about 3 months and I am tired of that.

how do I reinstall windows update totally
or reslove this problem?

thanks
James


 
Reply With Quote
 
 
 
 
MowGreen [MVP]
Guest
Posts: n/a

 
      03-01-2007
Jim,

Here's a temporary workaround. Go to Start > Run > type in

net stop wuauserv
Click OK or press Enter

Show hidden files, folders, and system files
http://www.bleepingcomputer.com/tuto...l62.html#winxp

Navigate to WINDOWS\SoftwareDistribution\DataStore
Delete the *contents* of the Logs folder and delete DataStore.edb
NOTE: Deleting the above will mean that the update history shown at
Windows|Microsoft Update will be cleared. Until updates are once again
done from either site, nothing will be listed.

Open the WINDOWS\SoftwareDistribution\Download folder and delete *all*
contents.
Close the window

Empty the Recyle Bin
Go back to Start > Run > type in

net start wuauserv
Click OK or press Enter

MowGreen [MVP 2003-2007]
===============
*-343-* FDNY
Never Forgotten
===============



Jim wrote:

> Every reboot, windows update runs 100% cpu for 5 7 minutes.
> if I turn off automatic updates it doesnt happen.
> (but then...no updates. so not a solution).
>
> its xp pro.
>
> I renamed windowsupdate.log (old) because I thought 1500k was
> pretty big, might have been slowing it down. this had no effect.
>
> windows update from IE6 and IE7 works fine.
>
> I dont understand the log and I dont know why it ramps the cpu
> every time I reboot this machine. this has been going on for
> about 3 months and I am tired of that.
>
> how do I reinstall windows update totally
> or reslove this problem?
>
> thanks
> James
>
>

 
Reply With Quote
 
Susan Bradley, CPA aka Ebitz - SBS Rocks [MVP]
Guest
Posts: n/a

 
      03-01-2007
Download the hotfix would be my recommendation. KB927891

MowGreen [MVP] wrote:
> Jim,
>
> Here's a temporary workaround. Go to Start > Run > type in
>
> net stop wuauserv
> Click OK or press Enter
>
> Show hidden files, folders, and system files
> http://www.bleepingcomputer.com/tuto...l62.html#winxp
>
> Navigate to WINDOWS\SoftwareDistribution\DataStore
> Delete the *contents* of the Logs folder and delete DataStore.edb
> NOTE: Deleting the above will mean that the update history shown at
> Windows|Microsoft Update will be cleared. Until updates are once again
> done from either site, nothing will be listed.
>
> Open the WINDOWS\SoftwareDistribution\Download folder and delete *all*
> contents.
> Close the window
>
> Empty the Recyle Bin
> Go back to Start > Run > type in
>
> net start wuauserv
> Click OK or press Enter
>
> MowGreen [MVP 2003-2007]
> ===============
> *-343-* FDNY
> Never Forgotten
> ===============
>
>
>
> Jim wrote:
>
>> Every reboot, windows update runs 100% cpu for 5 7 minutes.
>> if I turn off automatic updates it doesnt happen.
>> (but then...no updates. so not a solution).
>>
>> its xp pro.
>>
>> I renamed windowsupdate.log (old) because I thought 1500k was
>> pretty big, might have been slowing it down. this had no effect.
>>
>> windows update from IE6 and IE7 works fine.
>>
>> I dont understand the log and I dont know why it ramps the cpu
>> every time I reboot this machine. this has been going on for
>> about 3 months and I am tired of that.
>>
>> how do I reinstall windows update totally
>> or reslove this problem?
>>
>> thanks
>> James
>>
>>

 
Reply With Quote
 
MowGreen [MVP]
Guest
Posts: n/a

 
      03-02-2007
It works sometimes, sometimes not, from the reports I've been reading.

MG


Susan Bradley, CPA aka Ebitz - SBS Rocks [MVP] wrote:

> Download the hotfix would be my recommendation. KB927891
>
> MowGreen [MVP] wrote:
>
>> Jim,
>>
>> Here's a temporary workaround. Go to Start > Run > type in
>>
>> net stop wuauserv
>> Click OK or press Enter
>>
>> Show hidden files, folders, and system files
>> http://www.bleepingcomputer.com/tuto...l62.html#winxp
>>
>> Navigate to WINDOWS\SoftwareDistribution\DataStore
>> Delete the *contents* of the Logs folder and delete DataStore.edb
>> NOTE: Deleting the above will mean that the update history shown at
>> Windows|Microsoft Update will be cleared. Until updates are once again
>> done from either site, nothing will be listed.
>>
>> Open the WINDOWS\SoftwareDistribution\Download folder and delete *all*
>> contents.
>> Close the window
>>
>> Empty the Recyle Bin
>> Go back to Start > Run > type in
>>
>> net start wuauserv
>> Click OK or press Enter
>>
>> MowGreen [MVP 2003-2007]
>> ===============
>> *-343-* FDNY
>> Never Forgotten
>> ===============
>>
>>
>>
>> Jim wrote:
>>
>>> Every reboot, windows update runs 100% cpu for 5 7 minutes.
>>> if I turn off automatic updates it doesnt happen.
>>> (but then...no updates. so not a solution).
>>>
>>> its xp pro.
>>>
>>> I renamed windowsupdate.log (old) because I thought 1500k was
>>> pretty big, might have been slowing it down. this had no effect.
>>>
>>> windows update from IE6 and IE7 works fine.
>>>
>>> I dont understand the log and I dont know why it ramps the cpu
>>> every time I reboot this machine. this has been going on for
>>> about 3 months and I am tired of that.
>>>
>>> how do I reinstall windows update totally
>>> or reslove this problem?
>>>
>>> thanks
>>> James
>>>
>>>

 
Reply With Quote
 
ShadowSpirit
Guest
Posts: n/a

 
      03-12-2007
I made a batch file with your instructions. You can copy the below, paste it
in notepad (Start -> Run -> notepad.exe) and save it as anything.BAT (Save as
Type - all files). The only thing I've noticed from this fix is that if
you've setup your computer to do the Microsoft Updates (which includes
Office), it will reset back to Windows Updates. Not sure yet if the original
problem returns.

===copy below===
@echo off
net stop wuauserv
cd\
cd windows
cd softwaredistribution
cd datastore
del * /q
cd logs
del * /q
cd..
cd..
cd download
del * /q
net start wuauserv
 
Reply With Quote
 
Ottmar Freudenberger
Guest
Posts: n/a

 
      03-13-2007
"ShadowSpirit" <> schrieb:

> cd\
> cd windows
> cd softwaredistribution
> cd datastore


You may wanna shorten that to a
cd /d %windir%\Softwaredistribution\datastore
just in case.

Bye,
Freudi
 
Reply With Quote
 
Greg H
Guest
Posts: n/a

 
      03-15-2007
This problem has affected various systems (not all) at 2 sites I maintain
since the February updates were released.

I created this batch file (which also re-registers the Windows update
components), and it has been successful on some systems and not on others.
---
REM Reregister WU components

REGSVR32 WUAPI.DLL
REGSVR32 WUAUENG.DLL
REGSVR32 WUAUENG1.DLL
REGSVR32 ATL.DLL
REGSVR32 WUCLTUI.DLL
REGSVR32 WUPS.DLL
REGSVR32 WUPS2.DLL
REGSVR32 WUWEB.DLL


REM Cleanup WU files

net stop WuAuServ
rd /S /Q "%windir%\SoftwareDistribution"
net start WuAuServ
---
I've also installed KB927891 - which I thought was working, but appears to
not be the solution. Strangely, I recently downloaded/installed KB929338 on
a system and noted svchost.exe appeared to max out at only 50%, so the system
was otherwise useable.

I really hope Microsoft resolves this one soon...
 
Reply With Quote
 
dkblee
Guest
Posts: n/a

 
      03-27-2007
Hi! I;ve tried the hotfix no. kb927891 & 916089 perviously. The problem is
still not solved.

"Susan Bradley, CPA aka Ebitz - SBS Rocks" wrote:

> Download the hotfix would be my recommendation. KB927891
>
> MowGreen [MVP] wrote:
> > Jim,
> >
> > Here's a temporary workaround. Go to Start > Run > type in
> >
> > net stop wuauserv
> > Click OK or press Enter
> >
> > Show hidden files, folders, and system files
> > http://www.bleepingcomputer.com/tuto...l62.html#winxp
> >
> > Navigate to WINDOWS\SoftwareDistribution\DataStore
> > Delete the *contents* of the Logs folder and delete DataStore.edb
> > NOTE: Deleting the above will mean that the update history shown at
> > Windows|Microsoft Update will be cleared. Until updates are once again
> > done from either site, nothing will be listed.
> >
> > Open the WINDOWS\SoftwareDistribution\Download folder and delete *all*
> > contents.
> > Close the window
> >
> > Empty the Recyle Bin
> > Go back to Start > Run > type in
> >
> > net start wuauserv
> > Click OK or press Enter
> >
> > MowGreen [MVP 2003-2007]
> > ===============
> > *-343-* FDNY
> > Never Forgotten
> > ===============
> >
> >
> >
> > Jim wrote:
> >
> >> Every reboot, windows update runs 100% cpu for 5 7 minutes.
> >> if I turn off automatic updates it doesnt happen.
> >> (but then...no updates. so not a solution).
> >>
> >> its xp pro.
> >>
> >> I renamed windowsupdate.log (old) because I thought 1500k was
> >> pretty big, might have been slowing it down. this had no effect.
> >>
> >> windows update from IE6 and IE7 works fine.
> >>
> >> I dont understand the log and I dont know why it ramps the cpu
> >> every time I reboot this machine. this has been going on for
> >> about 3 months and I am tired of that.
> >>
> >> how do I reinstall windows update totally
> >> or reslove this problem?
> >>
> >> thanks
> >> James
> >>
> >>

>

 
Reply With Quote
 
Paul.Sillince@gmail.com
Guest
Posts: n/a

 
      04-26-2007

I work in a large network environment and am having the same problems
with the ntdll.dll in svchost taking up 100% cpu. The strange thing is
it seems to be only happening on laptops, whether they are connected
to the network or not. We use WSUS from a central server to maintan
windows updates. Would the work around mentioned above still work in
the WSUS environment.

 
Reply With Quote
 
dkblee
Guest
Posts: n/a

 
      04-26-2007
I tried the hotfix from Microsoft. That doesn't solve the problem at all. For
my case, this issue only happens on old machine(eg. P3 with 256MB RAM and
only during first 10mins after startup), the newer machine has no problem
with that.

You might want to tried the outfix, i think it did solve the problem on case
by case basis. I read through some newsgroups previously, it does work for
some other people.

"" wrote:

>
> I work in a large network environment and am having the same problems
> with the ntdll.dll in svchost taking up 100% cpu. The strange thing is
> it seems to be only happening on laptops, whether they are connected
> to the network or not. We use WSUS from a central server to maintan
> windows updates. Would the work around mentioned above still work in
> the WSUS environment.
>
>

 
Reply With Quote
 
 
 
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Windows Update is killing me! Alx16v Windows Vista General Discussion 11 05-06-2008 11:02 AM
Windows Update killing my driver Freck Daddy Windows Update 1 07-27-2006 09:17 PM
Windows update Killing RoliT Windows Update 1 07-05-2006 02:43 PM
SP2 Update KB885932 killing IE Shem Windows Update 5 03-28-2005 06:25 PM
Pchsvc.dll file killing WinXP SP2 update Dare Windows Update 2 09-17-2004 06:35 AM



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59