Windows Vista Tips

Windows Vista Tips > Newsgroups > Windows Update > KB831167 - Feels like the film Groundhog Day

Reply
Thread Tools Display Modes

KB831167 - Feels like the film Groundhog Day

 
 
Charlie
Guest
Posts: n/a

 
      02-09-2005
W2K, SP4.
KB831167 update for IE keeps popping up to install. I allow installation
and it appears to complete, but it keeps coming back.
I have seen this in the past and the fix was to delete the CatRoot2 folder
but there is no CatRoot2 folder present.

I'm sure this is common and I bet it comes up over an over, but I don't
visit this NG often. One more time, please?

Thanks
 
Reply With Quote
 
 
 
 
Torgeir Bakken \(MVP\)
Guest
Posts: n/a

 
      02-09-2005
Charlie wrote:

> W2K, SP4.
> KB831167 update for IE keeps popping up to install. I allow
> installation and it appears to complete, but it keeps coming back.
> I have seen this in the past and the fix was to delete the
> CatRoot2 folder but there is no CatRoot2 folder present.

Hi

The Catroot2 trick is only for WinXP, not Win2k.

What happens if you try to install the update manually by
downloading and running it from here:

http://www.microsoft.com/downloads/d...displaylang=en


I will guess you get this message (that means that you already
have a newer IE update installed that supersedes KB831167):

---------------------------
Microsoft Internet Explorer Update
---------------------------
This update requires Internet Explorer 6.0 Service Pack 1
to be installed.
---------------------------
OK
---------------------------


--
torgeir, Microsoft MVP Scripting and WMI, Porsgrunn Norway
Administration scripting examples and an ONLINE version of
the 1328 page Scripting Guide:
http://www.microsoft.com/technet/scr...r/default.mspx
 
Reply With Quote
 
Charlie
Guest
Posts: n/a

 
      02-09-2005
You guessed correctly!
What do you think would be the best way to get this to stop coming up?

"Torgeir Bakken (MVP)" wrote:

> Charlie wrote:
>
> > W2K, SP4.
> > KB831167 update for IE keeps popping up to install. I allow
> > installation and it appears to complete, but it keeps coming back.
> > I have seen this in the past and the fix was to delete the
> > CatRoot2 folder but there is no CatRoot2 folder present.

> Hi
>
> The Catroot2 trick is only for WinXP, not Win2k.
>
> What happens if you try to install the update manually by
> downloading and running it from here:
>
> http://www.microsoft.com/downloads/d...displaylang=en
>
>
> I will guess you get this message (that means that you already
> have a newer IE update installed that supersedes KB831167):
>
> ---------------------------
> Microsoft Internet Explorer Update
> ---------------------------
> This update requires Internet Explorer 6.0 Service Pack 1
> to be installed.
> ---------------------------
> OK
> ---------------------------
>
>
> --
> torgeir, Microsoft MVP Scripting and WMI, Porsgrunn Norway
> Administration scripting examples and an ONLINE version of
> the 1328 page Scripting Guide:
> http://www.microsoft.com/technet/scr...r/default.mspx
>

 
Reply With Quote
 
Torgeir Bakken \(MVP\)
Guest
Posts: n/a

 
      02-11-2005
Charlie wrote:

> "Torgeir Bakken (MVP)" wrote:
>> Charlie wrote:

>
>>> W2K, SP4.
>>> KB831167 update for IE keeps popping up to install. I allow
>>> installation and it appears to complete, but it keeps coming back.
>>> I have seen this in the past and the fix was to delete the
>>> CatRoot2 folder but there is no CatRoot2 folder present.

>>
>> The Catroot2 trick is only for WinXP, not Win2k.
>>
>> What happens if you try to install the update manually by
>> downloading and running it from here:
>>
>>http://www.microsoft.com/downloads/d...displaylang=en
>>
>> I will guess you get this message (that means that you already
>> have a newer IE update installed that supersedes KB831167):
>>
>> ---------------------------
>> Microsoft Internet Explorer Update
>> ---------------------------
>> This update requires Internet Explorer 6.0 Service Pack 1
>> to be installed.
>> ---------------------------
>> OK
>> ---------------------------

>
> You guessed correctly!
> What do you think would be the best way to get this to stop coming up?

Hi

Please see if this works:

Run the VBScript below, it adds the registry values that the KB831167
update adds when it installs successfully (as you have an update
already installed that supersedes the files in KB831167, it might
solve your problem to add those registry settings).

Copy and paste the script code below into a new Notepad document.
Save the file with a .vbs file extension. Run the file by double
clicking on it.


'--------------------8<----------------------

Set oShell = CreateObject("WScript.Shell")
sRegKey = "HKLM\SOFTWARE\Microsoft\Active Setup\Installed Components\" _
& "{795d0712-722c-43ec-906a-fc5e678eada9}\"

oShell.RegWrite sRegKey , "Q831167", "REG_SZ"
oShell.RegWrite sRegKey & "ComponentID", "Q831167", "REG_SZ"
oShell.RegWrite sRegKey & "Version", "6,0,2800,1405", "REG_SZ"
oShell.RegWrite sRegKey & "IsInstalled", 1, "REG_DWORD"

WScript.Echo "Finished"
'--------------------8<----------------------



--
torgeir, Microsoft MVP Scripting and WMI, Porsgrunn Norway
Administration scripting examples and an ONLINE version of
the 1328 page Scripting Guide:
http://www.microsoft.com/technet/scr...r/default.mspx
 
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
Groundhog Day Zip Windows Vista General Discussion 0 04-12-2009 04:06 PM
Groundhog Day Communikator Windows Vista General Discussion 2 01-10-2008 10:16 PM
I am one who also feels I should go back to xp Moosewatcher Windows Vista General Discussion 100 10-12-2007 10:57 PM
i like the way office 97 looks and feels. office 97 must live Windows Update 0 09-24-2004 09:09 AM
Do I need KB831167 jorackan Windows Update 2 05-07-2004 04:32 PM



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