Windows Vista Tips

Windows Vista Tips > Newsgroups > Windows Update > Error Code: 800703E7

Reply
Thread Tools Display Modes

Error Code: 800703E7

 
 
Doug Nelson
Guest
Posts: n/a

 
      08-27-2004
When trying to update to SP2, both via the Update page and automatic updates,
it fails with Error Code: 800703E7

The only references I can find to this error are about Media Player.

Any suggestions?
 
Reply With Quote
 
 
 
 
roger74432
Guest
Posts: n/a

 
      08-27-2004


"Doug Nelson" wrote:

> When trying to update to SP2, both via the Update page and automatic updates,
> it fails with Error Code: 800703E7
>
> The only references I can find to this error are about Media Player.
>
> Any suggestions?

 
Reply With Quote
 
hoochbear
Guest
Posts: n/a

 
      08-28-2004
wouldnt install after download
during download showed "unable to read from or write to the data base.
Mine showed error code 800710D9.
tried twice.
good luck
I may not even reallywant to install the sob
KILL BILL GATES


"roger74432" wrote:

>
>
> "Doug Nelson" wrote:
>
> > When trying to update to SP2, both via the Update page and automatic updates,
> > it fails with Error Code: 800703E7
> >
> > The only references I can find to this error are about Media Player.
> >
> > Any suggestions?

 
Reply With Quote
 
MadBob
Guest
Posts: n/a

 
      08-29-2004
I am having the same code, nothing on google (exceptthe media player thing)
contacted MS so fingers crossed. My laptop on the same network loaded no
problem.

"hoochbear" wrote:

> wouldnt install after download
> during download showed "unable to read from or write to the data base.
> Mine showed error code 800710D9.
> tried twice.
> good luck
> I may not even reallywant to install the sob
> KILL BILL GATES
>
>
> "roger74432" wrote:
>
> >
> >
> > "Doug Nelson" wrote:
> >
> > > When trying to update to SP2, both via the Update page and automatic updates,
> > > it fails with Error Code: 800703E7
> > >
> > > The only references I can find to this error are about Media Player.
> > >
> > > Any suggestions?

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

 
      08-30-2004
hoochbear wrote:

> wouldnt install after download
> during download showed "unable to read from or write to the data base.
> Mine showed error code 800710D9.
> tried twice.

Hi

For the error code 800710D9, try this:

Place the text below in a .bat (batch) file (e.g. paste it into a new
notepad document and save it with e.g. the name fixdb.bat)

Then run the batch file by double clicking on it.

You should run the batch file just after a reboot of the computer (as
the first thing).

The batch file will tell you when it is finished.

Please post any result back here, good or bad :-)

Start batch file:
--------------------8<----------------------

@echo off
:: Batch file that tries to remedy error # 800710D9
:: "Unable to read from or write to the database".
:: Author: Torgeir Bakken
:: Date: 2004-08-30

:: Stop the Cryptographic service
%SystemRoot%\System32\net.exe stop CryptSvc

:: Rename all log files in the %SystemRoot%\Security folder
FOR %%a in (%SystemRoot%\Security\*.log) DO move /y %%a %%a.old

:: Rename the %SystemRoot%\System32\CatRoot2 folder
move /y %SystemRoot%\System32\CatRoot2 %SystemRoot%\System32\CatRoot2old

IF not exist %SystemRoot%\System32\CatRoot2 GOTO CONT01

:: In case the folder rename failed because of locked files
:: rename all log files in the %SystemRoot%\System32\CatRoot2 folder
FOR %%a in (%SystemRoot%\System32\CatRoot2\*.log) DO move /y %%a %%a.old
SET catroot2locked=True

:CONT01
cls
echo.
echo Please wait, this might take some time...

:: Unregister DLL files that are associated with Cryptographic Services
CD /D %SystemRoot%\System32
start /wait regsvr32.exe /s /u softpub.dll
start /wait regsvr32.exe /s /u wintrust.dll
start /wait regsvr32.exe /s /u initpki.dll
start /wait regsvr32.exe /s /u dssenh.dll
start /wait regsvr32.exe /s /u rsaenh.dll
start /wait regsvr32.exe /s /u gpkcsp.dll
start /wait regsvr32.exe /s /u sccbase.dll
start /wait regsvr32.exe /s /u slbcsp.dll
start /wait regsvr32.exe /s /u cryptdlg.dll

:: Reregister DLL files that are associated with Cryptographic Services
start /wait regsvr32.exe /s softpub.dll
start /wait regsvr32.exe /s wintrust.dll
start /wait regsvr32.exe /s initpki.dll
start /wait regsvr32.exe /s dssenh.dll
start /wait regsvr32.exe /s rsaenh.dll
start /wait regsvr32.exe /s gpkcsp.dll
start /wait regsvr32.exe /s sccbase.dll
start /wait regsvr32.exe /s slbcsp.dll
start /wait regsvr32.exe /s cryptdlg.dll

:: Configure and start the Cryptographic service
%SystemRoot%\system32\sc.exe config CryptSvc start= auto
:: Start the Cryptographic Service
%SystemRoot%\system32\net.exe start CryptSvc
cls

echo.
If "%catroot2locked%"=="True" GOTO CONT02
echo Finished, please reboot the computer and then try to install SP2 again...

GOTO END
:CONT02
echo Please run the batch file again with a newly restarted computer...
echo (but if it is newly restarted, just do a reboot and then try
echo to install SP2 again)...
GOTO END

:END
echo.
pause

--------------------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
 
Nderdog
Guest
Posts: n/a

 
      08-31-2004
I have been experiencing this same problem and tried the batch file
workaround. It ran okay, but I'm still getting the same errors when
installing SP2. Thanks for trying, though!

"Torgeir Bakken (MVP)" wrote:

> hoochbear wrote:
>
> > wouldnt install after download
> > during download showed "unable to read from or write to the data base.
> > Mine showed error code 800710D9.
> > tried twice.

> Hi
>
> For the error code 800710D9, try this:
>
> Place the text below in a .bat (batch) file (e.g. paste it into a new
> notepad document and save it with e.g. the name fixdb.bat)
>
> Then run the batch file by double clicking on it.
>
> You should run the batch file just after a reboot of the computer (as
> the first thing).
>
> The batch file will tell you when it is finished.
>
> Please post any result back here, good or bad :-)
>
> Start batch file:
> --------------------8<----------------------
>
> @echo off
> :: Batch file that tries to remedy error # 800710D9
> :: "Unable to read from or write to the database".
> :: Author: Torgeir Bakken
> :: Date: 2004-08-30
>
> :: Stop the Cryptographic service
> %SystemRoot%\System32\net.exe stop CryptSvc
>
> :: Rename all log files in the %SystemRoot%\Security folder
> FOR %%a in (%SystemRoot%\Security\*.log) DO move /y %%a %%a.old
>
> :: Rename the %SystemRoot%\System32\CatRoot2 folder
> move /y %SystemRoot%\System32\CatRoot2 %SystemRoot%\System32\CatRoot2old
>
> IF not exist %SystemRoot%\System32\CatRoot2 GOTO CONT01
>
> :: In case the folder rename failed because of locked files
> :: rename all log files in the %SystemRoot%\System32\CatRoot2 folder
> FOR %%a in (%SystemRoot%\System32\CatRoot2\*.log) DO move /y %%a %%a.old
> SET catroot2locked=True
>
> :CONT01
> cls
> echo.
> echo Please wait, this might take some time...
>
> :: Unregister DLL files that are associated with Cryptographic Services
> CD /D %SystemRoot%\System32
> start /wait regsvr32.exe /s /u softpub.dll
> start /wait regsvr32.exe /s /u wintrust.dll
> start /wait regsvr32.exe /s /u initpki.dll
> start /wait regsvr32.exe /s /u dssenh.dll
> start /wait regsvr32.exe /s /u rsaenh.dll
> start /wait regsvr32.exe /s /u gpkcsp.dll
> start /wait regsvr32.exe /s /u sccbase.dll
> start /wait regsvr32.exe /s /u slbcsp.dll
> start /wait regsvr32.exe /s /u cryptdlg.dll
>
> :: Reregister DLL files that are associated with Cryptographic Services
> start /wait regsvr32.exe /s softpub.dll
> start /wait regsvr32.exe /s wintrust.dll
> start /wait regsvr32.exe /s initpki.dll
> start /wait regsvr32.exe /s dssenh.dll
> start /wait regsvr32.exe /s rsaenh.dll
> start /wait regsvr32.exe /s gpkcsp.dll
> start /wait regsvr32.exe /s sccbase.dll
> start /wait regsvr32.exe /s slbcsp.dll
> start /wait regsvr32.exe /s cryptdlg.dll
>
> :: Configure and start the Cryptographic service
> %SystemRoot%\system32\sc.exe config CryptSvc start= auto
> :: Start the Cryptographic Service
> %SystemRoot%\system32\net.exe start CryptSvc
> cls
>
> echo.
> If "%catroot2locked%"=="True" GOTO CONT02
> echo Finished, please reboot the computer and then try to install SP2 again...
>
> GOTO END
> :CONT02
> echo Please run the batch file again with a newly restarted computer...
> echo (but if it is newly restarted, just do a reboot and then try
> echo to install SP2 again)...
> GOTO END
>
> :END
> echo.
> pause
>
> --------------------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
 
Michelle
Guest
Posts: n/a

 
      08-31-2004
I am also having Error Code: 800703E7. I can find no mention of this error
anywhere. This post is the only time that I could even find a match to this
error code.

All workarounds needed to resolve this error.

Michelle

"Doug Nelson" wrote:

> When trying to update to SP2, both via the Update page and automatic updates,
> it fails with Error Code: 800703E7
>
> The only references I can find to this error are about Media Player.
>
> Any suggestions?

 
Reply With Quote
 
BigAl
Guest
Posts: n/a

 
      08-31-2004


"Michelle" wrote:

> I am also having Error Code: 800703E7. I can find no mention of this error
> anywhere. This post is the only time that I could even find a match to this
> error code.
>
> All workarounds needed to resolve this error.
>
> Michelle
>
> "Doug Nelson" wrote:
>
> > When trying to update to SP2, both via the Update page and automatic updates,
> > it fails with Error Code: 800703E7
> >
> > The only references I can find to this error are about Media Player.
> >
> > Any suggestions?

 
Reply With Quote
 
BigAl
Guest
Posts: n/a

 
      08-31-2004
Have received same error code and after following it through eventually was
directed to the microsoft web site howtotell.com
Basically I think this code is detailing faulty or copied software.

"Michelle" wrote:

> I am also having Error Code: 800703E7. I can find no mention of this error
> anywhere. This post is the only time that I could even find a match to this
> error code.
>
> All workarounds needed to resolve this error.
>
> Michelle
>
> "Doug Nelson" wrote:
>
> > When trying to update to SP2, both via the Update page and automatic updates,
> > it fails with Error Code: 800703E7
> >
> > The only references I can find to this error are about Media Player.
> >
> > Any suggestions?

 
Reply With Quote
 
Craig G.
Guest
Posts: n/a

 
      09-08-2004
I'm receiving this same error running a perfectly legit copy of XP Home that
I received with my Dell Dimension 8200. Are you saying that Windows thinks I
have a pirated copy?

Also submitted a problem ticket to Microsoft... Nothing back yet (certainly
not holding my breath!).

<Craig>


"BigAl" <> wrote in message
news:3F28D45E-B27C-4076-8DC4-...
> Have received same error code and after following it through eventually

was
> directed to the microsoft web site howtotell.com
> Basically I think this code is detailing faulty or copied software.
>
> "Michelle" wrote:
>
> > I am also having Error Code: 800703E7. I can find no mention of this

error
> > anywhere. This post is the only time that I could even find a match to

this
> > error code.
> >
> > All workarounds needed to resolve this error.
> >
> > Michelle
> >
> > "Doug Nelson" wrote:
> >
> > > When trying to update to SP2, both via the Update page and automatic

updates,
> > > it fails with Error Code: 800703E7
> > >
> > > The only references I can find to this error are about Media Player.
> > >
> > > Any suggestions?



 
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 0x80041002 error connecting to "servername.domain.org WNLB2003 roberto.reynoso@gmail.com Windows Media Player 0 02-07-2008 09:05 PM
Windows Media Player Error Message C00D11B0 with Original Error Code C00D2EE6 Graham Smith Windows Media Player 0 10-06-2007 05:17 AM
An error occurred while copying Setup files. Error code is [800702 Cacique Windows Vista General Discussion 2 06-17-2006 05:23 AM
Video Error Windows Media Center w/o error code just message Jer Windows Media Player 1 01-30-2006 04:37 AM
error code-0 x COD1116D and remedy code 0 X 00000000 confusedsunny Windows Media Player 1 10-03-2004 07:23 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