getting the same Windows Update?

J

JC Home

I seem to be getting the same Windows Update. Can anybody tell me why? It
is Security Update 329834. I think I've installed it at least twice from
the Windows Update prompt by the clock, and I've rebooted a couple of times
as well.

--
Jeff Ciaccio
Dallas, GA
(W) 678-494-7863 x-274
(Fax) (W) 678-494-7865
http://mywpages.comcast.net/ciaccio8515
 
K

Kelly

Hi Jeff,

Save the lines below into Notepad with a .vbs extension, then run.

Set WshShell = CreateObject("WScript.Shell")

WshShell.RegWrite
"HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall\Q329834\","Needed
to prevent Win Update from prompting for this install"
WshShell.RegWrite "HKLM\SOFTWARE\Microsoft\Windows
NT\CurrentVersion\HotFix\Q329834\Installed",1,"REG_DWORD"

Set WshShell = Nothing

Message = "Windows Update should no longer prompt" & vbCR
Message = Message & "for Hotfix Q329834 to be installed." & vbCR & vbCR
Message = Message & "© 2003 - Doug Knox and Kelly Theriot "

MsgBox Message, vbOkOnly, "Finished!"

/top10faqs.htm
 
K

Kelly

Most welcome, Jeff. Yes, it should but WU has many issues. This is just
one way of working around it for now.

As for scripts, is best to understand what they do (learn how to read them)
and/or trust the source. This particular one is writing a dword value to
the registry stating that Q329834 has already been installed.

In this case and most others, when you would rather manually check the
script against your registry settings, open it in Notepad and follow the
given path. From there you can change the values yourself and better
understand what the script could or would do for you.

Good luck!

/top10faqs.htm
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top