Steps for Troubleshooting Slow Network Issues

The following are a few steps which are useful to follow while troubleshooting slow
network communications over a WAN link.

**To troubleshoot network issues more effectively you must know the Ins-and-Outs of
the TCP/IP stack.  For a great beginning (and in depth information) please refer to
the book “Windows Server 2003 TCP/IP Protocols and Services Technical
Reference”.**

1) Take traces simultaneously between client and server

2) Check for delays in these queries
a) QUERY_PATH_INFO
b) QUERY_FS_INFO
c) FIND_FIRST2
d) NT_CREATE_ANDX
e) Trans2 GET_DFS_REFERRAL, NEGOTIATE, SESSION_SETUP_ANDX, LOGOFF_ANDX

        Note : If you are using Network Monitor, you can see the delays better if
you use the following filter:
SMB:Command == 0xA0 ( NT transact )
    Use this filter in combination with the following display options:
Time: (x) Seconds from previous frame
             You can identify the corresponding requests and answers by looking at
the following SMB frame attribute:
SMB: Multiplex ID (MID)

Average Response time from server should be like .002 ms.  If you see a server-side
delay from the client and a client-side delay from the server, then it’s probably a
network issue of some sort.

3) Try sending files to and from different servers and clients on the same segment.
 Try also sending file from server seeing the issue to a different receiving
client.  This may narrow it down to a specific machine seeing the issue.

4) Update all the NIC drivers on client and the server.
5) Set Network card and switch to a 100mb full instead of autodetect  (it is very
important that the two must match.  If they are mismatched then you could see
multiple problems)

6) If possible, start the machine in safe mode with networking and test.  Sometimes
third party components may cause delays.  In cases such as antivirus possibly
causing the slowness (very typical as it sometimes tries to scan everything leaving
and entering the machine) the only true way to test is to fully uninstall the
product because of the Kernel level filter drivers. (Also confirm for any 3rd party
servers such as SAN, SOLARIS, IBM etc.)

7) Try to access share on itself by giving loopback address to the server / client 
which will eliminate network components and take a trace should be done prior to
updating MRXSMB and Redirector

8) Update MRXSMB.sys file and RDBYSS.sys file both on the server side and the
client side  and also netbt.sys file.  Updating the Netbt.sys file will Improve
Redirector / server connections ( solution for Nagling and TCP delayed
acknowledgment ) Here are some articles for each that will help you in updating:

- Latest MRXSMB.sys file for Windows Servers (All Versions)
a) Windows 2003 Server – KB article 913835
b) Windows 2000 Server -  KB article 907546
c) Windows XP SP2 ( All versions) – KB article 896427

      – Latest RDBYSS.sys file for Windows Servers ( All versions)
a) Windows 2003 Server – KB896427
b) Windows 2000 Server – KB907546
c) Windows XP SP2 ( All versions) – KB 903891

      – Latest NetBt.sys file for windows Servers ( All versions)
a) Windows 2000 Server – KB article 984250

* Please check the KB for more updated fixes.  These are just pointers to help
out.
9) A common issue in networking is to mistake a shell issue with a slow network
issue. These issues can be seen in Mapped drives and browsing.  Any time you are
using the GUI you are using shell32.dll.   This would be considered a Performance
based issue. To test this theory you can go to a command prompt and do a Net View
then a Dir of the network resource. Does it populate all information quickly? If so
it may be a shell issue.  Prior to bringing in performance you can try updating the
shell32.dll.  Here are some articles for each that will help you in updating:

- Latest Shell32.dll file for Windows Servers (All Versions)
a) Windows 2003 Server – KB article 903154
b) Windows 2000 Server -  KB article 898068
c) Windows XP SP2 ( All versions) – KB article 912680

* Please check the KB for more updated fixes.  These are just pointers to help
out.

10) TCP Checksum Offloading : The TCP checksum is added to the packet by the
network interface,  not by  the OS’s TCP/IP stack; when capturing on an interface,
packets being sent by the host on which you ‘re capturing are directly handed to
the capture interface by the OS, which means that they are handed to the capture
interface with out a TCP checksum being added to them; So one way to prevent this
from happening is to disable TCP checksum offloading.

Disable TCP / IP checksum offloading. Please follow the procedure to disable the
TCP / IP checksum Offloading
     
a). Click Start, click Run, type ncpa.cpl , and then click OK.  
b). Right-click your network adapter, and then click Properties.  
c) Click the General tab, and then click Configure.  
d) Click the Advanced tab.  
e) In the Property box, click any one of the following properties.   Note We
recommend that you start with the Offload TCP Segmentation property. The problem is
probably caused by the Offload TCP Segmentation property because full support for
this feature is not implemented in the Vpcnets2.sys driver.  • Offload TCP
Segmentation   • Offload Receive IP Checksum   • Offload Receive TCP Checksum   •
Offload Transmit IP Checksum   • Offload Transmit TCP Checksum       
f). In the Value list, click Off, and then click OK.  
g). Test to see if the performance issue has been resolved. If the problem still
occurs, re-enable the property that you turned off, and then disable a different
task offload property. Test if performance has improved after you disable each
property.  

If your NDIS driver does not have the settings available to disable tcp checksum
offloading, then you can disable it by editing the registry as follows

a) Click Start, click Run, type regedit, and then click OK.
b) Locate and then click the following registry subkey:
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet
<http://wiki.colinux.org/cgi-bin/CurrentControlSet>\Services\Tcpip\Parameters
c) Click Edit, point to New, and then click DWORD Value.
d) Type DisableTaskOffload <http://wiki.colinux.org/cgi-bin/DisableTaskOffload> as
the entry name, and then press ENTER.
e) Right-click DisableTaskOffload
<http://wiki.colinux.org/cgi-bin/DisableTaskOffload>, and then click Modify.
f) In the Value data box, type a value of 1, and then click OK.
g) Quit Registry Editor.
h) Restart your computer

11) Use TCPDELACKTICKS if you see that server is not sending any packets nor it is
not responding for more than 200ms , at that point you see TCP ACK packet sent to
resume connection and this behaviour is because of TCP Delayed Ack.  We can edit
TCPDelAckTicks registry value for better performance , use the following registry
key
       
a).  Start Registry Editor (Regedt32.exe). 
b).        Locate and click the following key in the registry, where Adapter GUID
is the globally unique identifier (GUID) for the network adapter that connects to
the clients: 
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters\Interfaces\Ada
pter GUID  
 On the Edit menu, click Add Value, and then add the following registry value: 
Value name: TcpDelAckTicks Data type: REG_DWORD Value data: You can set this value
to a range from 0 to 6. The default setting is 2 (200 milliseconds).  
 Quit Registry Editor. 
 Restart Windows for this change to take effect.  
This registry value specifies the number of 100-millisecond intervals to use for
the delayed ACK timer on a per-interface basis. By default, the delayed ACK timer
value is 200 milliseconds. If you set the TcpDelAckTicks value to 0, delayed
acknowledgments are disabled. This setting causes the computer to immediately send
an ACK packet for every packet it receives.

 
12) You can also try using TCPAckFrequency registry key.  This will cause every
packet to get Acknowledged, you can reference more information on this by looking
at KB article 328890 or by reading the TCP/IP Protocols and Services Technical
Reference. Understand that this will also cause an increase in data on the lines as
you are acknowledging every packet.  After following 328890, if you don’t see any
changes please look at KB article 815230.  It updates TCPIP.sys.
      
13) Enabling ReadAhead feature on Sequential Reads ( This is very important and
probably a best resource ). Please go through 328237 KB article number. And look
for
        
HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\LanmanWorkStation\Parameters
             Value name: ReadAheadGranularity
                         Data type: REG_DWORD
      
                       
14) Opportunistic Locking :   By default, opportunistic locking is enabled for
server message block (SMB) clients that run one of the Windows operating systems.
Opportunistic locking allows clients to lock files and locally cache information
without the risk of another user changing the file. This increases performance for
many file operations but may decrease performance in other operations because the
server that grants the opportunistic lock must manage the breaking of that lock
when another user requests access to the file. A network trace is going to be the
determining factor in this.  You will see 8 – 16 second delays in which it is
trying to undo the opportunistic lock.  It may try multiple times.  With that being
the case you can go through the following article to disable Opportunistic
locking:
                       
      <http://vkbinternal/VKBWebService/ViewContent.aspx?scid=KB;EN-US;296264>

15) Check for SMB signing between both client and server.

a) To check for SMB signing Please go to the following registry key
b) Locate, and then click the enablesecuritysignature value under the following key
in the registry:
HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\Lanmanserver\Parameters
c) To disable SMB signing Please refer to KB article 321733

             
16) The following KB article is one of the useful article I have found that goes
over Network Shares opening slowly, read only or if you get an error message while
trying to open:
<http://vkbinternal/VKBWebService/ViewContent.aspx?scid=KB;EN-US;814112>

17)  Windows 2000 and Windows 2003 server uses Large File Support and not all
earlier version   of OS have this capability to perform faster Write and Read file
operations
So our main goal is to send large Read&X and Write&X , so we can tweak the
performance using SizReqBuf Registry key on Windows NT server . And the main reason
is
Windows NT server works in Raw SMB mode so Windows NT server doesn’t have Large
File Write Support.
To work around this performance issue, make the following registry change on the
Windows NT 4.0-based server:
      a).  Start Registry Editor (Regedt32.exe). 
      b). Locate and click the following key in the registry: 
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\lanmanserver\parameters  
 On the Edit menu, click Add Value, and then add the following registry value: 
Value Name: SizReqBuf Data Type: DWORD Value Radix: Decimal Value: 65535  
     c)   Quit Registry Editor. 
     e). Restart the server 
After you make this change, the performance of the write process is approximately
the same as a read operation between the two computers.                            
                                              

Note that the SizReqBuf value controls the buffer size for CORE SMB requests.
Setting it to 64 KB has approximately the same effect as Large Write support, which
uses 60-KB buffers.
From the tests completed , please set the ReadAheadGranularity to 16 on the
clients.

Adressbuch öffnet nicht nach Update KB911567

1. Deinstallieren sie das Sicherheitsupdate 911567 über Systemsteuerung – Software
2. Kopieren sie die .wab Datei, die sich im folgenden Ordner befindet, auf den Desktop:

C:\Dokumente und Einstellungen\<Benutzername>\Anwendungsdaten\Microsoft\Address Book

wobei <Benutzername> für ihren Anmeldenamen bei Windows steht.

3. Klicken sie auf Start – Ausführen und geben sie dort  cmd  ein. Klicken sie anschließend auf OK
4. Geben sie folgenden Befehl ein:

del „C:\Dokumente und Einstellungen\<Benutzername>\Anwendungsdaten\Microsoft\Address Book\<Benutzername>.*“
5. Starten sie Outlook Express.
6. Klicken sie in der Menüleiste auf Extras – Adressbuch. Das Adressbuch ist jetzt leer.
7. Klicken sie auf Datei – Importieren – Adressbuch
8. verweisen sie nun auf die .wab Datei, die sie in Schritt 2. auf dem Desktop gesichert haben.
Installieren sie über Windows Update das Update 911567 erneut

Media Player in Windows 98 entfernen

Um den Media Player zu entfernen, müssen Sie folgende Schritte durchführen:

- löschen Sie diese Dateien:

msdxm.ocx  (befindet sich im Ordner c:\windows\system)
msisys.ocx   (befindet sich im Ordner C:\Programme\Gemeinsame Dateien\Microsoft Shared\MSINFO)

- löschen Sie den Ordner C:\Programme\Windows Media Player

Installieren Sie den Windows Media Player 7.1 von folgender URL:

http://www.microsoft.com/downloads/details.aspx?FamilyID=6ccfee89-3d4f-42ee-9239-0893b2c40a62&DisplayLang=de

Missing swflash.ocx

Here is help to all who have a message with missing swflash.ocx. First go to your c:\ drive in my computer, then to windows folder, then search the windows folder for swflash.ocx, you will find it is uninstalled. When your computer find the old file, just simply copy the file by right click on the file, then select copy, now go to C:\WINDOWS\system32\Macromed\Flash and paste it in this folder

Error 1722: “There is a problem with this Windows Installer package . . . ”

Situation:
While installing Norton Internet Security (NIS) 2004, you see the error message: Error 1722: “There is a problem with this Windows Installer package. A program run as part of the setup did not finish as expected. Contact your support personnel or package vendor.”

Solution:
This problem results from trying to install from a corrupted MSI file, from a corrupted copy of the Microsoft Installer. To correct the problem, follow these procedures in order given.

To delete all temporary files
Click Start > Programs > Accessories > Windows Explorer, or double-click the My Computer icon on the desktop.
Click anywhere in the Address bar to select it. (If you do not see the Address bar, then right-click the blank area to the right of Help. On the menu that appears, click Address bar.)
Type this and then press Enter: %temp%

 
The Temp folder for the currently logged-on user displays.
In most cases, you can safely delete the contents. If you are not sure, then copy any files or folders to a different location. To delete the contents, click the Edit menu, and then click Select All.
Press Delete, and then click Yes if prompted to confirm.
Restart the computer.
Try the install process again. If you continue to get the 1722 error, continue on to the next section.

To manually remove corrupt MSI files
Open Windows Explorer.
In Windows 98/ME: click View > Folder Options
In Windows 2000/XP: click Tools > Options or Folder options
· Click the View tab,
In the Advanced Settings pane, under Files and Folders, verify that “Hide file extensions for known file types” is unchecked.
In Windows 95/NT, click “Show all files.”
In Windows 98, in the Advanced settings dialog box, click “Show all files” under the “Hidden files” folder.
In Windows Me/2000/XP, uncheck “Hide protected operating system files” and click “Show hidden files and folders” under the “Hidden files” folder.
· Click Apply > “Like Current Folder” or “Apply to all folders” > OK.
Browse to the Installer folder. In this folder is a number of files with the “.msi” extension.
In Windows 98/ME/XP: C:\Windows\Installer
In Windows 2000: C:\WinNT\Installer
· Right-click the first file in the list with a “.msi” extension.
Click Properties > Summary.
If either the Subject or Author fields contains a reference to Norton or Symantec, click OK and then press Delete to remove that file.delete that file.
If there are no more files with an “.msi” extension, proceed to step 10, otherwise right-click the next file in the list with an “.msi” extension and go back to step 6.
Try to reinstall the NIS. If you receive the same error, then continue to the next section.

To reinstall the Microsoft Installer
Both NIS and Norton AntiVirus 2004 use the Microsoft Installer. To install the latest version of the Microsoft Installer see the documents Windows Installer 1.1 Redistributable for Windows 95 and 98 <http://www.microsoft.com/downloads/details.aspx?
displaylang=en&FamilyID=F1B7A5B0-611B-45A7-A06D-CADFF33E64DA
>
(this document contains MSI updates for Windows 98, ME, and 2000), and Links to Microsoft information about how to reinstall the Microsoft Installer (MSI) <http://service1.symantec.com/SUPPORT/tsgeninfo.nsf/docid/2001092110452312>.

RAS Fehlercodes vollständig bis #781

600 Ein Vorgang wird noch ausgeführt.
601 Ein ungültiges Porthandle wurde entdeckt.
602 Der angegebene Port wurde bereits geöffnet.
603 Der Anruferpuffer ist zu klein.
604 Falsche Informationen wurden angegeben.
605 Portinformationen können nicht festgelegt werden.
606 Zu dem angegebenen Port ist keine Verbindung hergestellt.
607 Ein ungültiges Ereignis wurde entdeckt.
608 Ein nicht vorhandenes Gerät wurde angegeben.
609 Ein nicht vorhandener Gerätetyp wurde angegeben.
610 Ein ungültiger Puffer wurde angegeben.
611 Eine nicht verfügbare Route wurde angegeben.
612 Eine nicht zugeordnete Route wurde angegeben.
613 Ein ungültige Komprimierung wurde angegeben.
614 Es sind zuwenig Puffer verfügbar.
615 Der angegebene Port wurde nicht gefunden.
616 Asynchrone Anforderung wird noch bearbeitet.
617 Das Modem (oder ein anderes angeschlossenes Gerät) wurde bereits getrennt.
618 Der angegebene Port wurde nicht geöffnet.
619 Zu dem angegebenen Port ist keine Verbindung hergestellt.
620 Es konnten keine Endpunkte festgestellt werden.
621 Die Telefonbuchdatei konnte nicht geöffnet werden.
622 Die Telefonbuchdatei konnte nicht geladen werden.
623 Der Telefonbucheintrag für diese Verbindung konnte nicht gefunden werden.
624 Die Telefonbuchdatei konnte nicht aktualisiert werden.
625 In der Telefonbuchdatei befinden sich ungültige Informationen.
626 Eine Zeichenfolge konnte nicht geladen werden.
627 Ein Schlüssel konnte nicht gefunden werden.
628 Die Verbindung wurde geschlossen.
629 Die Verbindung wurde durch den Remotecomputer geschlossen.
630 Das Modem (oder ein anderes angeschlosssenes Gerät) wurde aufgrund eines Hardwarefehlers getrennt.
631 Das Modem (oder ein anderes Gerät) wurde bereits getrennt.
632 Eine ungültige Strukturgröße wurde entdeckt.
633 Das Modem wird bereits verwendet oder ist nicht für Hinauswählen über RAS konfiguriert. Klicken Sie auf “Hilfe”, um Informationen für die Fehlersuche zu erhalten.
634 Der Computer konnte nicht in dem Remotenetzwerk registriert werden.
635 Ein unbekannter Fehler ist aufgetreten.
636 Das am Anschluss angeschlosse Gerät ist nicht das erwartete.
637 Eine nicht konvertierbare Zeichenfolge wurde entdeckt.
638 Das Zeitlimit für die Anfrage wurde überschritten.
639 Es ist kein asynchrones Netz verfügbar.
640 Ein NetBIOS-Fehler ist aufgetreten.
641 Der Server konnte keine NetBIOS-Ressourcen zur Unterstützung des Clients bereitstellen.
642 Einer der NetBIOS-Namen des Computers ist bereits im Remotenetzwerk registriert.
643 Netzwerkadapter im Server fiel aus.
644 Sie werden keine Netzwerknachrichten empfangen können.
645 Ein interner Authentifizierungsfehler ist aufgetreten.
646 Dem Benutzerkonto ist ein Anmelden zu dieser Stunde verboten.
647 Das Konto ist deaktiviert.
648 Das Kennwort dieses Kontos ist abgelaufen.
649 Das Benutzerkonto hat keine Einwählberechtigungen.
650 Der RAS-Server antwortet nicht.
651 Das Modem (oder ein anderes Gerät) hat einen Fehler gemeldet.
652 Das Modem (oder ein anderes Gerät) hat eine nicht erkannte Antwort gesendet.
653 Ein vom Modem (oder einem anderen Gerät) benötigtes Makro konnte in der INF-Datei für dieses Gerät nicht gefunden werden.
654 Ein Befehl oder eine Reaktion in der INF-Datei im Abschnitt für dieses Gerät verweist auf ein nicht definiertes Makro.
655 Das Makro <message> konnte in der INF-Datei im Abschnitt für dieses Gerät nicht gefunden werden.
656 Das Makro <defaultoff> in der INF-Datei im Abschnitt für dieses Gerät verweist auf ein nicht definiertes Makro.
657 Die INF-Datei für dieses Gerät kann nicht geöffnet werden.
658 Der Gerätename in der INF-Datei (oder der Medienname in der INI-Datei) ist zu lang.
659 Die INI-Datei für dieses Medium verweist auf ein unbekanntes Gerät.
660 Die INF-Datei für das Gerät enthält keine Reaktion für diesen Befehl.
661 Ein Befehl fehlt in der INF-Datei für das Gerät.
662 Es wurde versucht, ein in der INF-Datei für das Gerät nicht aufgeführtes Makro zu verwenden.
663 Die INI-Datei für dieses Medium verweist auf einen unbekannten Gerätetyp.
664 Das System hat zuwenig Arbeitsspeicher zur Verfügung.
665 Das Modem ist nicht richtig konfiguriert.
666 Ihr Modem (oder ein anderes Gerät) funktioniert nicht.
667 Das System konnte die INI-Datei für dieses Medium nicht lesen.
668 Die Verbindung wurde getrennt.
669 Ungültiger Verwendungsparameter in der INI-Datei für dieses Medium.
670 Das System konnte den Abschnittsnamen in der INI-Datei für dieses Medium nicht lesen.
671 Das System konnte den Gerätetyp in der INI-Datei für dieses Medium nicht lesen.
672 Das System konnte den Gerätenamen in der INI-Datei für dieses Medium nicht lesen.
673 Das System konnte die Syntax in der INI-Datei für dieses Medium nicht lesen.
674 Das System konnte die maximale Übertragungsrate in der INI-Datei für dieses Medium nicht lesen.
675 Das System konnte die maximale Übertragungsrate des Trägers in der INI-Datei für dieses Medium nicht lesen.
676 Die Telefonleitung ist besetzt.
677 Anstatt eines Modems (oder eines anderen Geräts) hat eine Person geantwortet.
678 Keine Antwort.
679 Der Träger konnte nicht ermittelt werden.
680 Kein Freizeichen.
681 Ihr Modem (oder ein anderes Gerät) hat einen allgemeinen Fehler gemeldet.
691 Der Zugriff wurde verweigert, weil der Benutzername bzw. das Kennwort für die Domäne ungültig ist.
692 Hardwarefehler im Modem (oder einem anderen angeschlosssenen Gerät).
695 Die Statuscomputer sind nicht gestartet.
696 Die Statuscomputer sind bereits gestartet.
697 Die Antwortschleife wurde nicht abgeschlossen.
699 Die Antwort des Modems (oder eines anderen Geräts) verursachte einen Pufferüberlauf.
700 Der expandierte Befehl in der INF-Datei für das Gerät ist zu lang.
701 Das Modem schaltete auf eine Übertragungsrate um, die vom seriellen Treiber nicht unterstützt wird.
703 Die Verbindung benötigt Informationen von Ihnen, jedoch lässt die Anwendung keine Benutzereingaben zu.
704 Die Rückrufnummer ist ungültig.
705 Die Autorisierung ist ungültig.
707 Ein X.25-Protokollfehler ist aufgetreten.
708 Das Konto ist abgelaufen.
709 Beim Ändern des Kennworts für die Domäne ist ein Fehler aufgetreten. Das Kennwort ist eventuell zu kurz oder stimmt mit einem bereits verwendeten Kennwort überein.
710 Beim Datenaustausch mit dem Modem wurden serielle Überlauffehler entdeckt.
711 Die RAS-Verwaltung konnte nicht gestartet werden. Weitere Informationen finden Sie im Ereignisprotokoll.
712 Der Zweiweganschluss wird initialisiert. Warten Sie einige Sekunden, und wählen Sie dann erneut.
713 Es sind keine aktiven ISDN-Leitungen verfügbar.
714 Es sind keine ISDN-Leitungen verfügbar, um einen Anruf durchzuführen.
715 Aufgrund einer zu schlechten Telefonleitung sind zu viele Fehler aufgetreten.
716 Die RAS-IP-Konfiguration kann nicht verwendet werden.
717 Es sind keine IP-Adressen aus dem statischen Pool von RAS-IP-Adressen verfügbar.
718 Beim Warten auf eine gültige Antwort vom Remotecomputer wurde das Zeitlimit überschritten.
719 Die Verbindung wurde von Remotecomputer getrennt.
720 Der Verbindungsversuch ist fehlgeschlagen, da keine PPP-Steuerungsprotokolle zwischem diesem und dem Remotecomputer ausgehandelt werden konnten.
721 Der Remotecomputer antwortet nicht.
722 Vom Remotecomputer wurden ungültige Daten empfangen. Die Daten werden ignoriert.
723 Die Telefonnummer, einschließlich Vor- und Durchwahl, ist zu lang.
726 Das IPX-Protokoll kann nicht gleichzeitig auf mehr als einem Modem (oder einem anderen Gerät) zum Hinauswählen verwendet werden.
728 Es wurde kein IP-Adapter gefunden.
729 SLIP kann nur dann verwendet werden, wenn das IP-Protokoll installiert ist.
731 Das Protokoll ist nicht konfiguriert.
732 Der Computer konnte sich mit dem Remotecomputer nicht über ein PPP-Steuerungsprotokoll einigen.
733 Der Computer konnte sich mit dem Remotecomputer nicht über ein PPP-Steuerungsprotokoll einigen.
734 PPP-Verbindungssteuerungsprotokoll wurde beendet.
735 Die gewünschte Adresse wurde vom Server abgewiesen.
736 Der Remotecomputer hat das Steuerungprotokoll abgebrochen.
737 Loopback wurde erkannt.
738 Es wurde keine Adresse durch den Server zugewiesen.
739 Das vom Remoteserver erforderte Authentifizierungsprotokoll kann das gespeicherte Kennwort nicht verwenden. Wiederholen Sie den Wählvorgang, und geben Sie das Kennwort explizit ein.
740 Eine ungültige Wählregel wurde entdeckt.
741 Der lokale Computer unterstützt den angeforderten Datenverschlüsselungstyp nicht.
742 Der Remotecomputer unterstützt den angeforderten Datenverschlüsselungstyp nicht.
743 Der Remotecomputer erfordert Datenverschlüsselung.
751 Die Rückrufnummer enthält ein ungültiges Zeichen. Nur die folgenden 18 Zeichen sind zugelassen: 0 bis 9, T, P, W, (, ), -, @, und das Leerzeichen.
752 Syntaxfehler beim Bearbeiten eines Skripts.
753 Die Verbindung konnte nicht getrennt werden, da sie durch den Multiprotokollrouter erstellt wurde.
754 Das System konnte das Mehrfachverbindungsbündel nicht finden.
755 Automatisches Wählen kann nicht durchgeführt werden, da eine benutzerdefinierte Wählhilfe für diese Verbindung angegeben wurde.
756 Diese Verbindung wurde bereits gewählt.
757 RAS konnte nicht automatisch gestartet werden. Weitere Informationen finden Sie im Ereignisprotokoll.
758 Gemeinsame Nutzung der Internetverbindung ist für diese Verbindung bereits aktiviert.
760 Beim Aktivieren der Routingfunktionen ist ein Fehler aufgetreten.
761 Beim Aktivieren der gemeinsamen Nutzung der Internetverbindung für diese Verbindung ist ein Fehler aufgetreten.
763 Die gemeinsame Nutzung der Internetverbindung kann nicht aktiviert werden. Es existiert mehr als eine LAN-Verbindung als diejenige, die gemeinsam genutzt werden soll.
764 Es ist kein Smartcard-Leser installiert.
765 Die gemeinsame Nutzung der Internetverbindung kann nicht aktiviert werden. Eine LAN-Verbindung ist bereits konfiguriert mit der IP-Adresse, die für automatische IP-Adressierung erforderlich ist.
766 Es konnte kein Zertifikat gefunden werden.
767 Die gemeinsame Nutzung der Internetverbindung kann nicht aktiviert werden. Für die als privates Netzwerk ausgewählte LAN-Verbindung ist mehr als eine IP-Adresse konfiguriert. Konfigurieren Sie die LAN-Verbindung erneut mit einer einzigen IP-Adresse, bevor Sie die gemeinsame Nutzung der Internetverbindung aktivieren.
768 Der Verbindungsversuch ist fehlgeschlagen, da die Datenverschlüsselung fehlerhaft war.
769 Das angegebene Ziel ist nicht erreichbar.
770 Der Remotecomputer hat den Verbindungsversuch zurückgewiesen.
771 Der Verbindungsversuch ist fehlgeschlagen, da das Netzwerk überlastet ist.
772 Die Netzwerkhardware-Ausstattung des Remotecomputers ist nicht kompatibel mit dem angeforderten Anruftyp.
773 Der Verbindungsversuch ist fehlgeschlagen, da sich die Nummer des Ziels geändert hat.
774 Der Verbindungsversuch ist aufgrund eines temporären Fehlers fehlgeschlagen. Wiederholen Sie den Vorgang.
775 Der Anruf wurde vom Remotecomputer abgewiesen.
776 Der Anruf konnte nicht hergestellt werden, da der Remotecomputer die Funktion “Nicht Stören” aktiviert hat.
777 Der Verbindungsversuch ist fehlgeschlagen, da das Modem (oder ein anderes Gerät) auf dem Remotecomputer nicht betriebsbereit ist.
778 Die Identität des Servers konnte nicht verifziert werden.
779 Sie müssen eine Smartcard zum Hinauswählen über diese Verbindung verwenden.
780 Die verwendete Funktion ist für diese Verbindung nicht gültig.
781 Der Verschlüsselungsversuch ist fehlgeschlagen, da kein gültiges Zertifikat gefunden wurde.

Probleme bei der Installation von Servicepack 3, Windows XP

Um die Installation problemfrei ablaufen zu lassen empfehle ich Ihnen folgende Vorgehensweise:

1.
Laden Sie das SP3 von folgender Verlinkung und speichern Sie es auf Ihre Festplatte:
<http://download.microsoft.com/download
/1/e/7/1e758534-7b22-400c-9c46-d19d24ec7374/WindowsXP-KB936929-SP3-x86-DEU.exe
>

2.
Legen Sie die XP – CD in Ihr Laufwerk ein und starten Sie den Rechner neu. Drücken sie während des Bootens die F8 Taste im Sekundentakt und wählen sie im Menü “abgesicherter Modus” aus.

3.
Starten Sie im abgesicherten Modus mit einem Doppelklick auf die soeben geladene Datei WindowsXP-KB936929-SP3-x86-DEU.exe die Installation des SP3.

Um Probleme waehrend oder nach der SP3 – Installation zu beheben, sollten Sie folgende Dinge VOR der Installation beachten:

Deinstallieren Sie nach Möglichkeit vor der Installation alle Programme, insbesondere Virenscanner, Personal Firewall Software (von Drittanbietern, stattdessen ggf. die Windows Firewall aktivieren!), im Hintergrund laufende Antispyware-Programme von Drittanbietern (z.B. AdAware oder Spybot S&D) sowie Proxy-Programme aller Art (z.B. “WebWasher”)!

Falls Sie z.B. “XP-Antispy” oder ähnliche “Tuning”-Programme eingesetzt haben, machen Sie nach Möglichkeit die damit getroffenen Änderungen vor der Installation des SP3 rückgängig!

Dies gilt auch für das Verlegen/Umbiegen des Standardpfads für die Installation von Programmen, sowie die Installation von irgendwelchen “Themes”, “Style Packs” un dergleichen von Drittanbietern, die das Aussehen von Windows XP (auch das Bild beim Booten) grundlegend verändern.

Beachten Sie bitte auch den Abschnitt “Bekannte Probleme”, sowie die MSKB-Artikel KB950717 (deutschsprachig), KB947311 (deutschsprachig) und KB950718 (deutschsprachig) insbesondere bei Installationsproblemen.
Möglicherweise hilft das optionale Update KB951830 (DNS-Probleme) und/oder der im MS-Knowledgebase-Artikel KB953761 erwähnte Hotfix (DHCP-Probleme) gegen die (auch) in diesem Zusammenhang auftretenden Probleme.
Bei eingerichteten WLAN-Verbindungen kann es nach der Installation des SP3 beim Starten von Windows zu Fehlermeldungen die wlanapi.dll betreffend kommen.

Dies insbesondere dann, wenn ein Konfigurationstool des Herstellers der WLAN-Hardware verwendet wird. Davon scheint insbesondere aber nicht ausschließlich WLAN-Hardware von D-Link betroffen zu sein. In diesen Fällen hilft im Regelfall die Installation eines aktuellen Treibers bzw. einer aktualisierten Software für die WLAN-Hardware, die auf den Hersteller-Seiten zu beziehen sein sollten. Siehe auch MSKB-Artikel KB950720. Bei nach der Installation des SP3 instabilen WLAN-Verbindungen hilft ebenfalls häufig ein Treiberupdate.

Suchen Sie aktiv auf den Herstellerwebsiten Ihrer Netzwerkadapter nach neuen Treibern, ein Aktualisieren aus dem Geraetemanager heraus wird nicht die neueste Treiberversion einspielen, da die meisten Hersteller leider diese Funktion nicht nutzen.

Netzwerkperformance und -tuning

Wer wissen will, wie sein System standardmäßig eingestellt ist, kann das vorher mit folgendem Kommando herausfinden: netsh interface tcp show global
Autotuning
Aktivieren: netsh interface tcp set global autotuning=normal
Deaktivieren: netsh interface tcp set global autotuning=disabled
Compound TCP
Aktivieren: netsh interface tcp set global congestionprovider=ctcp
Deaktivieren: netsh interface tcp set global congestionprovider=none
ECN Support
Aktivieren: netsh interface tcp set global ecncapability=enabled
Deaktivieren: netsh interface tcp set global ecncapability=disabled
TCP Chimney
Aktivieren: netsh interface tcp set global chimney=enabled
Deaktivieren: netsh interface tcp set global chimney=disabled
Receive-side Scaling (RSS)
Aktivieren: netsh interface tcp set global rss=enabled
Deaktivieren: netsh interface tcp set global rss=disabled

http://blogs.technet.com/dmelanchthon/archive/2007/10/31/netzwerkperformance-unter-windows-vista.aspx

Kein Drucken aus Internet Explorer moeglich

Klicken sie auf Start und geben sie dort, wo “Suche starten” steht cmd ein. Drücken sie nicht die Eingabetaste. Unter Programme erscheint jetzt CMD.EXE. Klicken sie mit der rechten Maustaste auf cmd.exe und wählen sie “Als Administrator ausführen” aus. Es öffnet sich das Kommandozeilentool. Geben sie dort folgende Befehle, gefolgt von der Eingabetaste der Reihe nach ein:

regsvr32 ole32.dll

regsvr32 IEPEERS.DLL

regsvr32 actxprxy.dll

regsvr32 shdocvw.dll

regsvr32 Shdocvw.dll

regsvr32 Msjava.dll

regsvr32 Urlmon.dll

regsvr32 Mshtml.dll

regsvr32 Browseui.dll

regsvr32 Actxprxy.dll

regsvr32 Oleaut32.dll

regsvr32 Shell32.dll
Starten sie anschließend den Rechner neu.

How to use the Bootrec.exe tool in the Windows Recovery Environment to troubleshoot and repair startup issues in Windows Vista

You can use the Bootrec.exe tool in the Windows Recovery Environment (Windows RE) to troubleshoot and repair the following items in Windows Vista: • A master boot record (MBR) 
• A boot sector 
• A Boot Configuration Data (BCD) store 
Note When you are troubleshooting startup issues by using the Windows RE, you should first try the Startup Repair option in the System Recovery Options dialog box. If the Startup Repair option does not resolve the issue, or if you must troubleshoot more steps manually, use the Bootrec.exe tool.
MORE INFORMATION
To run the Bootrec.exe tool, you must start the Windows RE. To do this, follow these steps: 1.  Put the Windows Vista installation disc in the disc drive, and then start the computer. 
2.  Press a key when you are prompted. 
3.  Select a language, a time, a currency, a keyboard or an input method, and then click Next. 
4.  Click Repair your computer. 
5.  Click the operating system that you want to repair, and then click Next. 
6.  In the System Recovery Options dialog box, click Command Prompt. 
7.  Type Bootrec.exe , and then press ENTER. 

Bootrec.exe options
The Bootrec.exe tool supports the following options. Use the option that is appropriate for your situation.
/FixMbr
The /FixMbr option writes a Windows Vista-compatible MBR to the system partition. This option does not overwrite the existing partition table. Use this option when you must resolve MBR corruption issues, or when you have to remove non-standard code from the MBR.
/FixBoot
The /FixBoot option writes a new boot sector to the system partition by using a boot sector that is compatible with Windows Vista. Use this option if one of the following conditions is true: • The boot sector has been replaced with a non-standard Windows Vista boot sector. 
• The boot sector is damaged. 
• An earlier Windows operating system has been installed after Windows Vista was installed. In this scenario, the computer starts by using Windows NT Loader (NTLDR) instead of Windows Boot Manager (Bootmgr.exe). 

/ScanOs
The /ScanOs option scans all disks for installations that are compatible with Windows Vista. Additionally, this option displays the entries that are currently not in the BCD store. Use this option when there are Windows Vista installations that the Boot Manager menu does not list.
/RebuildBcd
The /RebuildBcd option scans all disks for installations that are compatible with Windows Vista. Additionally, this option lets you select the installations that you want to add to the BCD store. Use this option when you must completely rebuild the BCD.

Note If rebuilding the BCD does not resolve the startup issue, you can export and delete the BCD, and then run this option again. By doing this, you make sure that the BCD is completely rebuilt. To do this, type the following commands at the Windows RE command prompt: • bcdedit /export C:\BCD_Backup 
• ren c:\boot\bcd bcd.old 
• bootrec /RebuildBcd




4 visitors online now
4 guests, 0 members
Max visitors today: 7 at 10:18 am CEST
This month: 13 at 09-02-2010 05:29 am CEST
This year: 37 at 04-02-2010 08:56 pm CEST
All time: 37 at 04-02-2010 08:56 pm CEST