Windows Vista Tips

Windows Vista Tips > Newsgroups > Windows Update > Error Code: 0x80070436: When trying to download update

Reply
Thread Tools Display Modes

Error Code: 0x80070436: When trying to download update

 
 
Gemqueen
Guest
Posts: n/a

 
      09-10-2006
I am getting the following error code: 0x80070436 , when trying to download:

Unex Technology Corporation - Networking - IEEE 802.11b MiniPCI Wireless
Network Adapter update.

I have tried downloading this at different times, and it always fails.

Can anyone advise what this error means?

--
Thanks,

GQ
 
Reply With Quote
 
 
 
 
mTIE
Guest
Posts: n/a

 
      09-17-2006
I get the same error code when trying to download
a driver update (JMicron JMB36X Controller -- which is the SATA
drive controller on my motherboard).

The Visual Studio error lookup for that HR is "The name is already in use as
either a service name or a service display name". But of course the error
message doesn't tell use *which* name is already in use -- that might be
actually helpfull.

So my guess is that some windows service has to be shut down before you try
installing the update.


"Gemqueen" wrote:

> I am getting the following error code: 0x80070436 , when trying to download:
>
> Unex Technology Corporation - Networking - IEEE 802.11b MiniPCI Wireless
> Network Adapter update.
>
> I have tried downloading this at different times, and it always fails.
>
> Can anyone advise what this error means?
>
> --
> Thanks,
>
> GQ

 
Reply With Quote
 
Robert Aldwinckle
Guest
Posts: n/a

 
      09-17-2006
"mTIE" <> wrote in message
news:9A898492-8EA8-409C-A6CE-...
>I get the same error code when trying to download
> a driver update (JMicron JMB36X Controller -- which is the SATA
> drive controller on my motherboard).
>
> The Visual Studio error lookup for that HR is "The name is already in use as
> either a service name or a service display name". But of course the error
> message doesn't tell use *which* name is already in use -- that might be
> actually helpfull.
>
> So my guess is that some windows service has to be shut down before you try
> installing the update.



Did you look for the context of that code in the log?

Alternatively, Run... FileMon to supplement the log.
E.g. using a filter such as: SoftwareDistribution;update;CatRoot
often seems useful. Note that update has the convenient effect
of capturing both the writes to the log and any accesses which might
be done by a program named update.exe (e.g. the name which is
often used to install an update.)

In this particular case though that filter might be too restrictive.
I'd hope for context from the log to help first. (Ref. KB902093)
Next I might try using its verbose option (though I have never had
as much luck with it as I have had with using FileMon and RegMon.)


Good luck

Robert Aldwinckle
---


 
Reply With Quote
 
mTIE
Guest
Posts: n/a

 
      09-19-2006
Thanks for the good advice, Robert.
Unfortunately, I'm no closer to a solution to the problem.

I found some context in SETUPAPI.log:

#I123 Doing full install of
"PCI\VEN_197B&DEV_2360&SUBSYS_03601849&REV_00\4&2F F59A88&0&0018".
#-035 Processing service Add/Delete section [JM.Services].
#E279 Add Service: Failed to create service "JGOGO". Error 1078: The name is
already in use as either a service name or a service display name.
#E033 Error 1078: The name is already in use as either a service name or a
service display name.
#E275 Error while installing services. Error 1078: The name is already in
use as either a service name or a service display name.
#E122 Device install failed. Error 1078: The name is already in use as
either a service name or a service display name.
#E157 Default installer failed. Error 1078: The name is already in use as
either a service name or a service display name.

and I found a service named "JGOGOX64" in the system registry with th
Display Name: JMicron Hot-Plug Driver

So far this makes sense; SATA2 drives are hot-swappable, so the OS treats
them as removable, and you'd expect a driver update to require shutting down
any service associated with the device.

But! There's no "JMicron Hot-Plug Driver" in Start, Administrative Tools,
Services!

So it looks like I'm at a dead end with no solution in sight.

Thanks anyway,

mTIE


"Robert Aldwinckle" wrote:

> "mTIE" <> wrote in message
> news:9A898492-8EA8-409C-A6CE-...

[snipped]
> > So my guess is that some windows service has to be shut down before you try
> > installing the update.

>
>
> Did you look for the context of that code in the log?
>

[snipped]
> I'd hope for context from the log to help first. (Ref. KB902093)

[snipped]
>
> Good luck
>
> Robert Aldwinckle
> ---


 
Reply With Quote
 
Robert Aldwinckle
Guest
Posts: n/a

 
      09-19-2006
"mTIE" <> wrote in message
news:678FAD06-D35B-445F-AA09-...
> Thanks for the good advice, Robert.
> Unfortunately, I'm no closer to a solution to the problem.
>
> I found some context in SETUPAPI.log:
>
> #I123 Doing full install of
> "PCI\VEN_197B&DEV_2360&SUBSYS_03601849&REV_00\4&2F F59A88&0&0018".
> #-035 Processing service Add/Delete section [JM.Services].
> #E279 Add Service: Failed to create service "JGOGO". Error 1078: The name is
> already in use as either a service name or a service display name.
> #E033 Error 1078: The name is already in use as either a service name or a
> service display name.
> #E275 Error while installing services. Error 1078: The name is already in
> use as either a service name or a service display name.
> #E122 Device install failed. Error 1078: The name is already in use as
> either a service name or a service display name.
> #E157 Default installer failed. Error 1078: The name is already in use as
> either a service name or a service display name.
>
> and I found a service named "JGOGOX64" in the system registry with th
> Display Name: JMicron Hot-Plug Driver
>
> So far this makes sense; SATA2 drives are hot-swappable, so the OS treats
> them as removable, and you'd expect a driver update to require shutting down
> any service associated with the device.
>
> But! There's no "JMicron Hot-Plug Driver" in Start, Administrative Tools,
> Services!
>
> So it looks like I'm at a dead end with no solution in sight.



I bet the Display name is the problem. Try removing or renaming it.
E.g. perhaps you could use the sc.exe command (in a cmd window).

FWIW here is a clearer message associated with the same code:

http://www.itefix.no/phpws/index.php..._MAN_ITEMS=191
(Live search for
"error 1078" service
)

<quote>
The name is already in use as either a service name
or a service display name
</quote>


Good luck

Robert
---


 
Reply With Quote
 
Dave Paekinson
Guest
Posts: n/a

 
      10-14-2006
I am getting this code for an ATI graphics driver .Any Ideas anybody.???

"Robert Aldwinckle" wrote:

> "mTIE" <> wrote in message
> news:678FAD06-D35B-445F-AA09-...
> > Thanks for the good advice, Robert.
> > Unfortunately, I'm no closer to a solution to the problem.
> >
> > I found some context in SETUPAPI.log:
> >
> > #I123 Doing full install of
> > "PCI\VEN_197B&DEV_2360&SUBSYS_03601849&REV_00\4&2F F59A88&0&0018".
> > #-035 Processing service Add/Delete section [JM.Services].
> > #E279 Add Service: Failed to create service "JGOGO". Error 1078: The name is
> > already in use as either a service name or a service display name.
> > #E033 Error 1078: The name is already in use as either a service name or a
> > service display name.
> > #E275 Error while installing services. Error 1078: The name is already in
> > use as either a service name or a service display name.
> > #E122 Device install failed. Error 1078: The name is already in use as
> > either a service name or a service display name.
> > #E157 Default installer failed. Error 1078: The name is already in use as
> > either a service name or a service display name.
> >
> > and I found a service named "JGOGOX64" in the system registry with th
> > Display Name: JMicron Hot-Plug Driver
> >
> > So far this makes sense; SATA2 drives are hot-swappable, so the OS treats
> > them as removable, and you'd expect a driver update to require shutting down
> > any service associated with the device.
> >
> > But! There's no "JMicron Hot-Plug Driver" in Start, Administrative Tools,
> > Services!
> >
> > So it looks like I'm at a dead end with no solution in sight.

>
>
> I bet the Display name is the problem. Try removing or renaming it.
> E.g. perhaps you could use the sc.exe command (in a cmd window).
>
> FWIW here is a clearer message associated with the same code:
>
> http://www.itefix.no/phpws/index.php..._MAN_ITEMS=191
> (Live search for
> "error 1078" service
> )
>
> <quote>
> The name is already in use as either a service name
> or a service display name
> </quote>
>
>
> Good luck
>
> Robert
> ---
>
>
>

 
Reply With Quote
 
Robert Aldwinckle
Guest
Posts: n/a

 
      10-15-2006
"Dave Paekinson" <Dave > wrote in message
news:8F7078A4-5C6E-49F4-A73D-...
>I am getting this code for an ATI graphics driver .Any Ideas anybody.???



ATI uses services. E.g. see if any are running using tasklist
(from a cmd window):

tasklist /svc

Perhaps you need to stop or remove the ones that are already there?


Good luck

Robert
---


 
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
error code for windows XP Security Update download failure - 0x800 tvroom2000 Windows Update 1 07-26-2006 09:29 AM
SP2 fail to download, no error code JJ Windows Update 1 12-02-2004 07:04 AM
Error Code 8007F0CC when trying to download XP SP2 Mackenjack Windows Update 2 10-16-2004 11:04 PM
Error Code: 80072EE2 fail to download sp2,but other update alway O Alex Windows Update 2 09-18-2004 09:15 PM
SP2 Download Error Code 8007F0CC bkwoophysics Windows Update 3 08-27-2004 06:01 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