0x8007043b error


Site
Search
Tool

 

 POPULAR XP NEWSLETTER

POPULAR ARTICLES

 

COMMON ERRORS

 
DIGITAL
MEDIA
 
 

0x8007043b Windows Update Error

Published by Marc Liron - Microsoft MVP

Finding a solution for the 0x8007043b error 
 

This is a fairly common Windows Update error and hopefully this article will help you resolve the problems you are having.

The 0x8007043b error code typically occurs because of a "process" issue.

 

What causes Error 0x8007043b

# This error may occur if the WUAUSERV and BITS services are not configured properly in the registry.


To resolve this error, use the following method:

Resolution Suggestion One:

# Add WUAUSERV and BITS to the SvcHost process:


1. Click Start
2. Choose Run
3. In the Run box, type REGEDIT
4. Click OK

The Registry Editor opens.
*WARNING*
Using Registry Editor incorrectly can cause serious problems that may require you to reinstall your operating system. Microsoft cannot guarantee that problems resulting from the incorrect use of Registry Editor can be solved. Use Registry Editor at your own risk.

5. Navigate to the following key:

HKEY_Local_Machine\Software\Microsoft\WindowsNT\CurrentVersion\SvcHost

6. Double-click to open the netsvcs key
7. Under Value Data
8. Add BITS and WUAUSERV to the list of services
9. Click OK
10. Exit the registry
11. Restart the system
 

------------------------------

It is NOT possible to write a REG file for you to download and accomplish this for you as there are too many variables that could go wrong here! (Basically each machine could, and is going to vary....)

BUT...

Torgeir a Microsoft MVP in Scripting and WMI has written a VBScript that checks if BITS and wuauserv is listed in the Registry value netsvcs, and if not, adds them.

Put it in a file named e.g. NetsvcsWUChk.vbs

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

Const HKLM = &H80000002
 

arrNeededSvcs = Array("BITS","wuauserv")

strKeyPath = "SOFTWARE\Microsoft\Windows NT\CurrentVersion\SvcHost"
strValueName = "netsvcs"
 

strComputer = "."   ' "use "." for local computer
 

Set objReg = GetObject("winmgmts:{impersonationLevel=impersonate}!\\" _
                  & strComputer & "\root\default:StdRegProv")

objReg.GetMultiStringValue HKLM, strKeyPath, strValueName, arrValues
 

' create string from array, easier to check for existence this way
 

strValues = "|" & Join(arrValues, "|") & "|"

bolUpdateNeeded = False ' init value
 

For Each strNeededSvcs In arrNeededSvcs
  If InStr(1, strValues, strNeededSvcs, vbTextCompare) = 0 Then
    ' service is not in array, add it
    intArrCount = UBound(arrValues) + 1
    ReDim Preserve arrValues(intArrCount)
    arrValues(intArrCount) = strNeededSvcs
    bolUpdateNeeded = True
  End If
Next
 

If bolUpdateNeeded Then
  objReg.SetMultiStringValue HKLM, strKeyPath, strValueName, arrValues
End If
 

MsgBox "Done!", vbInformation + vbSystemModal, "Netsvcs check"
 

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

---------------------------------------------------------------------------

This 0x8007043b error "fix" has also been found to work in some newsgroup postings.......

Try registering the following:

Click Start, select Run and type (pressing enter after each one and wait for the
success message):

net.exe stop wuauserv

Press Ok

Repeat for the following:

regsvr32 wuapi.dll
regsvr32 wups.dll
regsvr32 wuaueng.dll
regsvr32 wucltui.dll
regsvr32 msxml3.dll
regsvr32 atl.dll

net.exe start wuauserv

                                                   ------------------------------

wmp
The How To Play Your DVD's
In Windows Media Player!

The DVD XPack instantly adds DVD playback to
Windows Media Player 9, 10 and 11. It Installs the
same theatre-quality video and audio decoders
proven by over 45 million users of WinDVD -
the world's leading software DVD player!

Why use it?  BECAUSE:

It's FAST, low-cost, easy to use AND Microsoft approved!

The InterVideo DVD XPack Plugin

(The above link not working? Click Here)

NOW works with Windows Vista too!

 

If you have found this article on Windows Update Error: 0x8007043b useful, then why not sign up for my FREE Windows XP Newsletter service?

Enjoy the rest of site and remember if you have a query about this site or a comment to make then drop me a line at the Contact Page

Kind Regards

Marc Liron MVP

 

Marc Liron - Bio
Microsoft MVP
Your Guide to using Windows XP
A Unique Windows XP Newsletter? Sign Up Now!
- Make sure you get your FREE tips and advice...

 

Other Websites By Marc Liron - Microsoft MVP

News and Articles on Windows Vista:

www.instantvista.com

My Techie Blog:

www.marclironblog.com

My Windows Technology Newsletter

www.marctalkstech.com

Data Bucket Pro

 

The views on this website are my own and NOT that of Microsoft!
I am not responsible for the content of any sites linked to.
ALL Trademarks are freely acknowledged
ALL information is provided "
As Is"

This page was last updated 24th January 2005

Home Page | Privacy Policy | About Me | Contact Me