Ik heb het probleem gehad dat de update van SP2 niet werkte omdat deze niet kon lezen en schrijven naar de database. (error # 800710D9) Ik had hier al gezocht voor een oplossing maar kon hem niet vinden. Dus voor al die andere mensen die zoeken naar een oplossing (en die komen vast wel) is hier de oplossing.
Plaats deze code een batch bestand (naam.bat) en run de file. Reboot en daarna zal sp2 installeren
Plaats deze code een batch bestand (naam.bat) en run de file. Reboot en daarna zal sp2 installeren
code:
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
60
61
62
63
64
65
66
67
68
69
70
71
| @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 |