|
Home > Archive > BizTalk Server Setup > November 2005 > Error 5003 Regsvcs failed during install of SP1
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
Error 5003 Regsvcs failed during install of SP1
|
|
|
| I'm installling SP1, but the installation was paused with the following
error:
Error 5003. Regsvcs failed for assemply c:\program files\Microsoft Biztalk
Server 2004\Microsoft.Biztalk.Deployment.dll. Return code 1.
I'm not sure why SP1 is trying to deploy this dll to COM+, because it is
already there.
I have attached what i think is the relevant section of the log file below:
Dim sFrameworkPath : sFrameworkPath = ""
Dim sPath : sPath = ""
on error resume next
Dim str: str = Session.Property("CustomActionData")
Dim iPos: iPos = InStr(str, "|")
If iPos > 0 Then
sFrameworkPath = Left(str, iPos-1)
sPath = Right(str, Len(str) - iPos)
Else
sFrameworkPath = str
End If
If Err.Number <> 0 Or sFrameworkPath = "" Or sPath = "" Then
Err.Clear
ReportError 5006, "", 0
RegsvcsCA = 3
Exit Function
End If
Dim iResult : iResult = Runsvcs( sFrameworkPath, sPath )
If iResult<>0 Then
RegsvcsCA = 3
Exit Function
End If
RegsvcsCA = 1
End Function
Sub ReportError( iErrorCode, sAssembly, iResultCode )
Dim oRecord : Set oRecord = Session.Installer.CreateRecord(3)
oRecord.IntegerData(1) = iErrorCode
oRecord.Strin
MSI (s) (DC:FC) [11:36:38:057]: Entering MsiProvideComponentFromDescriptor.
Descriptor: d@qazCv@`@C,F[F(H5%(Main>M5KDYSUnf(HA*L[xeX)y, PathBuf: EBF348,
pcchPathBuf: EBF344, pcchArgsOffset: EBF2A4
MSI (s) (DC:FC) [11:36:38:057]: MsiProvideComponentFromDescriptor called for
component {997FA962-E067-11D1-9396-00A0C90F27F9}: returning harcoded
oleaut32.dll value
MSI (s) (DC:FC) [11:36:38:057]: MsiProvideComponentFromDescriptor is
returning: 0
MSI (s) (DC:4C) [11:36:40:939]: Entering MsiProvideComponentFromDescriptor.
Descriptor: d@qazCv@`@C,F[F(H5%(Main>M5KDYSUnf(HA*L[xeX)y, PathBuf: A7ED48,
pcchPathBuf: A7ED44, pcchArgsOffset: A7ECA4
MSI (s) (DC:4C) [11:36:40:939]: MsiProvideComponentFromDescriptor called for
component {997FA962-E067-11D1-9396-00A0C90F27F9}: returning harcoded
oleaut32.dll value
MSI (s) (DC:4C) [11:36:40:939]: MsiProvideComponentFromDescriptor is
returning: 0
MSI (s) (DC!F8) [11:41:58:020]: Product: Microsoft BizTalk Server 2004 --
Error 5003.Regsvcs failed for assembly C:\Program Files\Microsoft BizTalk
Server 2004\Microsoft.BizTalk.Deployment.dll. Return code 1.
Thank you,
lyndon
| |
|
| Hey Lyndon,
this is the same problem -- follow the same advice on my blog (
http://www.nivot.ca ) and run the sp1 installer under localsystem
account; if you hit the "read more" section, you'll see that after
manually fixing the reg perms for the first 1928 failure, I hit that
regsvcs error too.
- Oisin
| |
|
| Great. Thanks Oisin.
I'm wondering if i'm going to have any permission problems when developing
an running applications within biztalk.
"Oisin" <oising@gmail.com> wrote in message
news:1131385801.334027.58650@f14g2000cwb.googlegroups.com...
> Hey Lyndon,
>
> this is the same problem -- follow the same advice on my blog (
> http://www.nivot.ca ) and run the sp1 installer under localsystem
> account; if you hit the "read more" section, you'll see that after
> manually fixing the reg perms for the first 1928 failure, I hit that
> regsvcs error too.
>
> - Oisin
>
|
|
|
|
|