Σφαλμα κατά την απενεργοποίηση της σύνδεσης

Ξεκίνησε από SotirisD, 15 Μαρ 2010, 05:11:39 ΜΜ

« προηγούμενο - επόμενο »

SotirisD

Καλησπέρα, προσπαθώ εδώ και καιρό να κάνω απενεργοποίηση της τοπικής σύνδεσης αλλά όταν μου βγάζει αυτό το σφάλμα:


όποιος ξέρει κάτι και μπορεί να με βοηθήσει θα του ήμουν ευγνώμων.

Νίκος Αδαμόπουλος

Τι εννοείς "απενεργοποίηση της τοπικής σύνδεσης";

dpa2006

αν εννοείς ότι δεν μπορείς να απενεργοποιήσεις τη τοπική σύνδεση των Windows δες παρακάτω:
XP: Unable To Disable Local Area Connection. Error "It is not possible to disable the connection at this time."
Computer science (abbreviated CS or CompSci) is the scientific and practical approach to computation and its applications. It is the systematic study of the feasibility, structure, expression, and mechanization of the methodical processes (or algorithms) that underlie the acquisition, representation, processing, storage, communication of, and access to information, whether such information is encoded in bits and bytes in a computer memory or transcribed engines and protein structures in a human cell.source:http://en.wikipedia.org/wiki/Computer_science

SotirisD

Παράθεση από: dpa2006 στις 15 Μαρ 2010, 06:19:42 ΜΜ
αν εννοείς ότι δεν μπορείς να απενεργοποιήσεις τη τοπική σύνδεση των Windows δες παρακάτω:
XP: Unable To Disable Local Area Connection. Error "It is not possible to disable the connection at this time."

Ναι αυτό εννοώ, ευχαριστώ για την βοήθεια, θα το δοκιμάσω!

SotirisD

Το δοκίμασα αλλά δυστυχώς δεν δούλεψε, να διευκρινίσω πως η τοπική σύνδεση είναι μέσω router.  Όποιος άλλος μπορεί να βοηθήσει ας παραθέσει μία λύσει, ευχαριστώ!

Keep Growing

Ο Έρωτας (του Εκπ/κου Πληροφορικού) στ' αλώνια της καλδέρας (του υπνωτισμού).

dpa2006

Παράθεση από: SotirisD στις 15 Μαρ 2010, 08:03:16 ΜΜ
Ναι αυτό εννοώ, ευχαριστώ για την βοήθεια, θα το δοκιμάσω!
δοκίμασες να επανεγκαταστήσεις TCP/IP Stack;
Computer science (abbreviated CS or CompSci) is the scientific and practical approach to computation and its applications. It is the systematic study of the feasibility, structure, expression, and mechanization of the methodical processes (or algorithms) that underlie the acquisition, representation, processing, storage, communication of, and access to information, whether such information is encoded in bits and bytes in a computer memory or transcribed engines and protein structures in a human cell.source:http://en.wikipedia.org/wiki/Computer_science

SotirisD

Παράθεση από: dpa2006 στις 15 Μαρ 2010, 09:36:44 ΜΜ
δοκίμασες να επανεγκαταστήσεις TCP/IP Stack;

Πως μπορώ να το κάνω αυτό?


dpa2006

Computer science (abbreviated CS or CompSci) is the scientific and practical approach to computation and its applications. It is the systematic study of the feasibility, structure, expression, and mechanization of the methodical processes (or algorithms) that underlie the acquisition, representation, processing, storage, communication of, and access to information, whether such information is encoded in bits and bytes in a computer memory or transcribed engines and protein structures in a human cell.source:http://en.wikipedia.org/wiki/Computer_science

SotirisD

Παράθεση από: Keep Growing στις 15 Μαρ 2010, 09:21:01 ΜΜ
Συνάδελφε κοίταξε στους παρακάτω συνδέσμους:


http://www.neowin.net/forum/topic/348866-error-disabling-connection/

Πήγα σε αυτό το σύνδεσμο αλλά επειδή δεν πολύ κατάλαβα πως ακριβώς θα εφαρμόσω αυτή την μέθοδο:
ΠαράθεσηHello everyone, I've been looking into this problem and I think I've come to a solid conclusion. My first hint was numerous posts regarding Cryptographic Services. Anyways it seems that this error is caused by corruption in the db or problems with registered DLL files required by the service. Awhile back I found a little batch script that fixes common Cryptographic Services problems; this script was originally created to correct a Windows Update error (0x800710D9) but seems to also be relevant in this situation that seems to be caused by Autoruns. I suspect by the Speed Tweaks area; but this is just a guess.

This script has been tested on SP1 and SP2 Windows XP Pro systems, should work fine for Home as well.
Hope it helps you all out
Copy between --START-- and --END-- then just paste into a file and name it fixdb.bat

--START--

@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

cls
echo This batch file will now try to remedy the error 0x800710D9.
echo To abort and not run it now, hold down Ctrl and press C.
echo Otherwise press the space bar to continue.
pause

:: 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

--END--

Θα παρακαλούσα να με βοηθήσει κάποιος.

Keep Growing

Είναι ένα batch αρχείο.
Αντιγράφεις τις εντολές μεταξύ start και end  και τις κάνεις επικόλληση σε έναν κειμενογράφο.
Στη συνέχεια αποθηκεύεις δίνοντας την επέκταση .bat και εκτελείς το αρχείο κάνοντας double click επάνω του.
Ο Έρωτας (του Εκπ/κου Πληροφορικού) στ' αλώνια της καλδέρας (του υπνωτισμού).

SotirisD

Παράθεση από: Keep Growing στις 16 Μαρ 2010, 01:24:21 ΜΜ
Είναι ένα batch αρχείο.
Αντιγράφεις τις εντολές μεταξύ start και end  και τις κάνεις επικόλληση σε έναν κειμενογράφο.
Στη συνέχεια αποθηκεύεις δίνοντας την επέκταση .bat και εκτελείς το αρχείο κάνοντας double click επάνω του.

δηλαδή δεν χρειάζεται να πατήσω τίποτα? γιατί αυτό μου λέει να πατήσω ένα κουμπί για να συνεχίσει:

Keep Growing

Αυτό που σου ζητά είναι αποτέλεσμα των εντολών:

echo Otherwise press the space bar to continue.
pause

απλά πατάς enter αν θέλεις να εκτελεστούν οι εντολές μετά την pause.

αλλιώς με ctrl + c ζητάς ουσιαστικά να τερματίσεις την εκτέλεση των εντολών του batch αρχείου .bat.
Ο Έρωτας (του Εκπ/κου Πληροφορικού) στ' αλώνια της καλδέρας (του υπνωτισμού).

SotirisD

Παράθεση από: Keep Growing στις 16 Μαρ 2010, 05:20:50 ΜΜ
Αυτό που σου ζητά είναι αποτέλεσμα των εντολών:

echo Otherwise press the space bar to continue.
pause


απλά πατάς enter αν θέλεις να εκτελεστούν οι εντολές μετά την pause.

αλλιώς με ctrl + c ζητάς ουσιαστικά να τερματίσεις την εκτέλεση των εντολών του batch αρχείου .bat.


Οκ κατάλαβα, ευχαριστώ!

SotirisD

Παράθεσηecho Finished, please reboot the computer and then try to install SP2 again...
Πρέπει να εγκαταστήσω πάλι το SP2? ρωτάω επειδή τα καινούργια cd των xp το έχουν αυτόματα, ενώ έχει βγει και SP3.

Keep Growing

Όχι. Απλά έλεγξε αν λύθηκε το πρόβλημα.
Ο Έρωτας (του Εκπ/κου Πληροφορικού) στ' αλώνια της καλδέρας (του υπνωτισμού).

SotirisD


Keep Growing

Κρίμα. Σε πολλές άλλες παρόμοιες περιπτώσεις δούλεψε.  :)

Ο Έρωτας (του Εκπ/κου Πληροφορικού) στ' αλώνια της καλδέρας (του υπνωτισμού).