<?xml version="1.0" encoding="utf-8" ?>

<rss version="2.0" 
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:admin="http://webns.net/mvcb/"
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
   xmlns:wfw="http://wellformedweb.org/CommentAPI/"
   xmlns:content="http://purl.org/rss/1.0/modules/content/"
   >
<channel>
    
    <title>Hope This Helps - AD / Domäne / FSMO</title>
    <link>http://hope-this-helps.de/serendipity/</link>
    <description>IT Tipps</description>
    <dc:language>de</dc:language>
    <generator>Serendipity 1.5.5 - http://www.s9y.org/</generator>
    
    

<item>
    <title>Fehlermeldung ADPREP /RODCPREP oder DCDIAG ForestDnsZones und DomainDnsZone</title>
    <link>http://hope-this-helps.de/serendipity/archives/271-Fehlermeldung-ADPREP-RODCPREP-oder-DCDIAG-ForestDnsZones-und-DomainDnsZone.html</link>
            <category>AD / Domäne / FSMO</category>
    
    <comments>http://hope-this-helps.de/serendipity/archives/271-Fehlermeldung-ADPREP-RODCPREP-oder-DCDIAG-ForestDnsZones-und-DomainDnsZone.html#comments</comments>
    <wfw:comment>http://hope-this-helps.de/serendipity/wfwcomment.php?cid=271</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://hope-this-helps.de/serendipity/rss.php?version=2.0&amp;type=comments&amp;cid=271</wfw:commentRss>
    

    <author>nospam@example.com (Ralf Entner)</author>
    <content:encoded>
    &lt;strong&gt;Problem:&lt;/strong&gt;&lt;br /&gt;
Beim Durchführen des ADPREP-Befehls kommt es zu folgender Fehlermeldung:&lt;br /&gt;
&lt;blockquote&gt;Adprep konnte kein Replikat für Partition DC=ForestDnsZones,DC=Root-Domäne erreichen.&lt;br /&gt;
ADPREP hat einen LDAP-Fehler festgestellt.&lt;br /&gt;
Fehlercode: 0x0. Erweiterter Server-Fehlercode: 0x0, Server-Fehlermeldung:(null).&lt;br /&gt;
 &lt;br /&gt;
und&lt;br /&gt;
 &lt;br /&gt;
Adprep konnte kein Replikat für Partition DC=DomainDnsZones,DC=Domäne,DC=de erreichen.&lt;br /&gt;
ADPREP hat einen LDAP-Fehler festgestellt.&lt;br /&gt;
Fehlercode: 0x0. Erweiterter Server-Fehlercode: 0x0, Server-Fehlermeldung:(null).&lt;/blockquote&gt;&lt;br /&gt;
&lt;br /&gt;
der Fehler kann aber auch beim ausführen des Befehls DCDIAG auffallen, der sich wie folgt äußert:&lt;br /&gt;
&lt;blockquote&gt;Starting test: NCSecDesc&lt;br /&gt;
         Fehler: NT-AUTORITÄT\DOMÄNENCONTROLLER DER ORGANISATION besitzt &lt;br /&gt;
         keine Replicating Directory Changes In Filtered Set&lt;br /&gt;
         Zugriffsrechte für den Namenskontext:&lt;br /&gt;
         DC=DomainDnsZones,DC=Domäne,DC=TLD&lt;br /&gt;
         Fehler: NT-AUTORITÄT\DOMÄNENCONTROLLER DER ORGANISATION besitzt &lt;br /&gt;
         keine Replicating Directory Changes In Filtered Set&lt;br /&gt;
         Zugriffsrechte für den Namenskontext:&lt;br /&gt;
         DC=ForestDnsZones,DC=Domäne,DC=TLD&lt;br /&gt;
         .................. DCON01 hat den Test NCSecDesc nicht bestanden.&lt;/blockquote&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;Lösung:&lt;/strong&gt;&lt;br /&gt;
Beim Verschieben und Neuerstellen der FSMO-Rollen auf einem anderen Server werden die Anwendungspartitionen ForestDnsZones und DomainDnsZone nicht angepaßt. Dadurch wird der neue Infrastructuremaster nicht in diese Partitionen übernommen und es kommt zu den Fehlermeldungen.&lt;br /&gt;
Da Microsoft weder einen Hinweis noch einen Protokoll-Eintrag zur Verfügung stellt, muß man hier manuell auf die Änderung durchführen, bzw. ein von Microsoft veröffentlichtes Skript verwenden.&lt;br /&gt;
Hier das Skript, dass bei mir zum erfolgreichen Umzug des &quot;RoleOwners&quot; für beide Partitionen geführt hat:&lt;br /&gt;
&lt;blockquote&gt;-------fixfsmo.vbs------------------&lt;br /&gt;
const ADS_NAME_INITTYPE_GC = 3&lt;br /&gt;
const ADS_NAME_TYPE_1779 = 1&lt;br /&gt;
const ADS_NAME_TYPE_CANONICAL = 2&lt;br /&gt;
&lt;br /&gt;
set inArgs = WScript.Arguments&lt;br /&gt;
&lt;br /&gt;
if (inArgs.Count = 1) then&lt;br /&gt;
    &#039; Assume the command line argument is the NDNC (in DN form) to use.&lt;br /&gt;
    NdncDN = inArgs(0)&lt;br /&gt;
Else&lt;br /&gt;
    Wscript.StdOut.Write &quot;usage: cscript fixfsmo.vbs NdncDN&quot;&lt;br /&gt;
End if&lt;br /&gt;
&lt;br /&gt;
if (NdncDN &lt;&gt; &quot;&quot;) then&lt;br /&gt;
&lt;br /&gt;
    &#039; Convert the DN form of the NDNC into DNS dotted form.&lt;br /&gt;
    Set objTranslator = CreateObject(&quot;NameTranslate&quot;)&lt;br /&gt;
    objTranslator.Init ADS_NAME_INITTYPE_GC, &quot;&quot;&lt;br /&gt;
    objTranslator.Set ADS_NAME_TYPE_1779, NdncDN&lt;br /&gt;
    strDomainDNS = objTranslator.Get(ADS_NAME_TYPE_CANONICAL)&lt;br /&gt;
    strDomainDNS = Left(strDomainDNS, len(strDomainDNS)-1)&lt;br /&gt;
     &lt;br /&gt;
    Wscript.Echo &quot;DNS name: &quot; &amp;amp; strDomainDNS&lt;br /&gt;
&lt;br /&gt;
    &#039; Find a domain controller that hosts this NDNC and that is online.&lt;br /&gt;
    set objRootDSE = GetObject(&quot;LDAP://&quot; &amp;amp; strDomainDNS &amp;amp; &quot;/RootDSE&quot;)&lt;br /&gt;
    strDnsHostName = objRootDSE.Get(&quot;dnsHostName&quot;)&lt;br /&gt;
    strDsServiceName = objRootDSE.Get(&quot;dsServiceName&quot;)&lt;br /&gt;
    Wscript.Echo &quot;Using DC &quot; &amp;amp; strDnsHostName&lt;br /&gt;
&lt;br /&gt;
    &#039; Get the current infrastructure fsmo.&lt;br /&gt;
    strInfraDN = &quot;CN=Infrastructure,&quot; &amp;amp; NdncDN&lt;br /&gt;
    set objInfra = GetObject(&quot;LDAP://&quot; &amp;amp; strInfraDN)&lt;br /&gt;
    Wscript.Echo &quot;infra fsmo is &quot; &amp;amp; objInfra.fsmoroleowner&lt;br /&gt;
&lt;br /&gt;
    &#039; If the current fsmo holder is deleted, set the fsmo holder to this domain controller.&lt;br /&gt;
&lt;br /&gt;
    if (InStr(objInfra.fsmoroleowner, &quot;\0ADEL:&quot;) &gt; 0) then&lt;br /&gt;
&lt;br /&gt;
        &#039; Set the fsmo holder to this domain controller.&lt;br /&gt;
        objInfra.Put &quot;fSMORoleOwner&quot;,  strDsServiceName&lt;br /&gt;
        objInfra.SetInfo&lt;br /&gt;
&lt;br /&gt;
        &#039; Read the fsmo holder back.&lt;br /&gt;
        set objInfra = GetObject(&quot;LDAP://&quot; &amp;amp; strInfraDN)&lt;br /&gt;
        Wscript.Echo &quot;infra fsmo changed to:&quot; &amp;amp; objInfra.fsmoroleowner&lt;br /&gt;
&lt;br /&gt;
    End if&lt;br /&gt;
&lt;br /&gt;
End if&lt;/blockquote&gt;&lt;br /&gt;
gestartet wird das ganze dann wie folgt (Anpassung des Domänennames ist nötig - hier als Beispiel: contoso.com):&lt;br /&gt;
&lt;blockquote&gt;cscript fixfsmo.vbs DC=DomainDnsZones,DC=contoso,DC=com&lt;/blockquote&gt;&lt;br /&gt;
&lt;br /&gt;
Quellen für weitere Informationen bzw. manuellen Umzug der Rolle:&lt;br /&gt;
&lt;u&gt;&lt;a href=&quot;http://smtp25.blogspot.com/2008/08/replicating-directory-changes-in.html&quot;&gt;smtp25.blogspot.com: Replicating Directory Changes in Filtered Set access rights for the naming context &lt;/a&gt;&lt;/u&gt;&lt;br /&gt;
&lt;u&gt;&lt;a href=&quot;http://blog.dikmenoglu.de/PermaLink,guid,5b7b4b38-dd36-44bb-8998-4656dab5adc2.aspx&quot;&gt;dikmenoglu.de: DCDIAG: NCSecDesc Fehler&lt;/a&gt;&lt;/u&gt;&lt;br /&gt;
&lt;u&gt;&lt;a href=&quot;http://blog.dikmenoglu.de/PermaLink,guid,8bd1a9cb-a166-4d70-bfe8-1aacdcc01877.aspx&quot;&gt;dikmenoglu.de: Die Infrastrukturmaster der Anwendungsverzeichnispartitionen&lt;/a&gt;&lt;/u&gt;&lt;br /&gt;
&lt;u&gt;&lt;a href=&quot;http://support.microsoft.com/kb/949257/en-us&quot;&gt;Microsoft KB949257: Error message when you run the &quot;Adprep /rodcprep&quot; command in Windows Server 2008: &quot;Adprep could not contact a replica for partition DC=DomainDnsZones,DC=Contoso,DC=com&quot;&lt;/a&gt;&lt;/u&gt; 
    </content:encoded>

    <pubDate>Tue, 05 Apr 2011 10:56:52 +0200</pubDate>
    <guid isPermaLink="false">http://hope-this-helps.de/serendipity/archives/271-guid.html</guid>
    
</item>
<item>
    <title>Profil anlegen über VPN ohne DC Kontakt bei Anmeldung</title>
    <link>http://hope-this-helps.de/serendipity/archives/249-Profil-anlegen-ueber-VPN-ohne-DC-Kontakt-bei-Anmeldung.html</link>
            <category>AD / Domäne / FSMO</category>
            <category>AD und Dienste</category>
            <category>Clients</category>
            <category>Windows</category>
    
    <comments>http://hope-this-helps.de/serendipity/archives/249-Profil-anlegen-ueber-VPN-ohne-DC-Kontakt-bei-Anmeldung.html#comments</comments>
    <wfw:comment>http://hope-this-helps.de/serendipity/wfwcomment.php?cid=249</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://hope-this-helps.de/serendipity/rss.php?version=2.0&amp;type=comments&amp;cid=249</wfw:commentRss>
    

    <author>nospam@example.com (Christopher Pope)</author>
    <content:encoded>
    Der Eintrag ist jetzt keine Wirkliche Problemlösung eher ein kleiner Trick , in meinem Job kann es vorkommen das für einen Außendienstmitarbeiter ein neues Profil auf dem Rechner angelegt werden muss. Wenn z.B. das lokale Profil defekt ist oder ein Kollege die Anpassung des Laptops auf den User verschlafen hat &lt;img src=&quot;http://hope-this-helps.de/serendipity/templates/default/img/emoticons/wink.png&quot; alt=&quot;;-)&quot; style=&quot;display: inline; vertical-align: bottom;&quot; class=&quot;emoticon&quot; /&gt; Nun stellt sich die Frage wie legt man ein lokales Profil an wenn man keinen Kontakt zum DC (Domain Controller) bei der Anmeldung hat ? &lt;br /&gt;
&lt;br /&gt;
Ich hab es so gelöst :&lt;br /&gt;
&lt;br /&gt;
Man meldet sich mit einem beliebigen lokalen User an dem Laptop an und startet eine VPN Verbindung ins Firmennetz , wenn diese steht führt man ein Programm mit dem &lt;strong&gt;&quot;Ausführen als&quot;&lt;/strong&gt; Dialog aus , Windows XP legt in diesem Schritt das Profil des User auf der lokalen HDD mit den aktuellen Kontoinformationen an. Nun meldet man den lokalen User ab und man kann sich mit dem AD User ohne Probleme anmelden.&lt;br /&gt;
&lt;br /&gt;
Weiterführende Links :&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://support.microsoft.com/kb/294676/de&quot; target=&quot;_blank&quot; title=&quot;Aktivieren von RunAs&quot;&gt;Aktivieren von RunAs&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Alternativ dazu kann natürlich auch die Kommandozeile diese Aufgabe erfüllen &lt;a href=&quot;http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/runas.mspx?mfr=true&quot; target=&quot;_blank&quot;  title=&quot;RunAs Parameter&quot;&gt;-&gt; RunAs&lt;/a&gt; 
    </content:encoded>

    <pubDate>Fri, 10 Sep 2010 08:54:54 +0200</pubDate>
    <guid isPermaLink="false">http://hope-this-helps.de/serendipity/archives/249-guid.html</guid>
    
</item>
<item>
    <title>ActiveDirectory kein Zugriff / DNS-Zonen werden nicht geladen / Global Catalog Event 1026</title>
    <link>http://hope-this-helps.de/serendipity/archives/243-ActiveDirectory-kein-Zugriff-DNS-Zonen-werden-nicht-geladen-Global-Catalog-Event-1026.html</link>
            <category>AD / Domäne / FSMO</category>
    
    <comments>http://hope-this-helps.de/serendipity/archives/243-ActiveDirectory-kein-Zugriff-DNS-Zonen-werden-nicht-geladen-Global-Catalog-Event-1026.html#comments</comments>
    <wfw:comment>http://hope-this-helps.de/serendipity/wfwcomment.php?cid=243</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://hope-this-helps.de/serendipity/rss.php?version=2.0&amp;type=comments&amp;cid=243</wfw:commentRss>
    

    <author>nospam@example.com (Ralf Entner)</author>
    <content:encoded>
    &lt;strong&gt;Problem:&lt;/strong&gt;&lt;br /&gt;
Sie können sich nicht mehr an Ihrer Domäne anmelden. Die DNS-Zonen werden nicht mehr angezeigt.&lt;br /&gt;
In der Ereignisanzeige überschlagen sich die Meldungen wie folgt:&lt;br /&gt;
&lt;br /&gt;
&lt;blockquote&gt;1869 - Active Directory has located a global catalog in the following site....&lt;br /&gt;
1655 - Active Directory attempted to communicate with the following global catalog and the attempts were unsuccessful... Additional Data Error value: 5 Access is denied.&lt;br /&gt;
1126 - Active Directory was unable to establish a connection with the global catalog.... Additional Data Error value:&lt;br /&gt;
8430 The directory service encountered an internal failure. / Internal ID: 3200c89&lt;br /&gt;
&lt;/blockquote&gt;&lt;br /&gt;
Es ist keine DNS-Auflösung möglich hier fallen vorallem folgende Events beim Starten des DNS-Servers auf:&lt;br /&gt;
&lt;blockquote&gt;Ereigniskennung 4000&lt;br /&gt;
Beschreibung: Der DNS-Server konnte Active Directory nicht öffnen. Dieser DNS-Server ist für die Verwendung von Informationen vom Verzeichnis für diese Zone konfiguriert und kann die Zone ohne es nicht laden. Stellen Sie sicher, dass das Active Directory ordnungsgemäß funktioniert, und laden Sie die Zone neu. Die Ereignisdaten enthalten den Fehlercode.&lt;br /&gt;
-und-&lt;br /&gt;
Ereignis-ID 4013 &lt;br /&gt;
Der DNS-Server konnte das Active Directory nicht öffnen. Dieser DNS-Server wurde für die Verwendung von Verzeichnisdienstinformationen konfiguriert und kann ohne Zugriff zu dem Verzeichnis nicht fehlerfrei ausgeführt werden. Der DNS-Server wird so lange angehalten, bis das Verzeichnis gestartet wird. Sollte der Server gestartet worden sein und das Ereignis ist nicht protokolliert worden, so wird der Server angehalten, bis das Verzeichnis gestartet wird.&lt;/blockquote&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;Lösung:&lt;/strong&gt;&lt;br /&gt;
Das Problem ist, dass die DNS-Zonen nicht mehr aus der ActiveDirectory-Datenbank ausgelesen werden können, da der gesicherte Kanal zwischen AD und DNS nicht mehr funktioniert. Sollte die Kommunikation zwischen den beiden Diensten einige Zeit nicht stattfinden, dann können sie nicht mehr aufeinander zugreifen. Man muß diesen Kanal bzw. das Passwort neu initialisieren. Hierzu gibt es den Befehl &quot;&lt;em&gt;NLTEST&lt;/em&gt;&quot;, der bei den Support Tools integreiert ist.&lt;br /&gt;
&lt;br /&gt;
1.) Support Tools für die entsprechende Serverversion herunterladen und installieren&lt;br /&gt;
2.) Folgenden Befehl ausführen:&lt;br /&gt;
&lt;blockquote&gt;nltest /sc_change_pwd:domain.name&lt;br /&gt;
&lt;br /&gt;
wobei domain.name der FQDN der Domäne ist (z.B.: test.local)&lt;/blockquote&gt;&lt;br /&gt;
&lt;br /&gt;
Es ist KEIN Neustart des Servers nötig. Danach ist der DNS-Dienst wieder verfügbar. Bitte noch Dateireplikation und Verzeichnisreplikation überprüfen und ggf. die Dienste neu starten.&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;Quelle:&lt;/strong&gt; &lt;u&gt;&lt;a href=&quot;http://www.eggheadcafe.com/community/aspnet/11/10177542/active-directory-dns-broken-ntds-global-catalog-error-1126.aspx&quot;&gt;eggheadcafe.com: Active Directory DNS broken, NTDS Global Catalog error 1126&lt;/a&gt;&lt;/u&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;Download Support Tools Server 2003:&lt;/strong&gt; &lt;u&gt;&lt;a href=&quot;http://www.microsoft.com/downloads/details.aspx?FamilyID=96a35011-fd83-419d-939b-9a772ea2df90&amp;displaylang=en&quot;&gt;Microsoft: Windows Server 2003 Service Pack 2 32-bit Support Tools&lt;/a&gt;&lt;/u&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;Download Support Tools Server 2000:&lt;/strong&gt; &lt;u&gt;&lt;a href=&quot;http://www.microsoft.com/downloads/details.aspx?familyid=f08d28f3-b835-4847-b810-bb6539362473&amp;displaylang=en&quot;&gt;Microsoft: Windows 2000 Service Pack 4 Support Tools&lt;/a&gt;&lt;/u&gt; 
    </content:encoded>

    <pubDate>Wed, 28 Jul 2010 11:02:01 +0200</pubDate>
    <guid isPermaLink="false">http://hope-this-helps.de/serendipity/archives/243-guid.html</guid>
    
</item>
<item>
    <title>Fehler beim Zugriff einer Serverfreigabe über den DNS-Alias (CNAME)</title>
    <link>http://hope-this-helps.de/serendipity/archives/230-Fehler-beim-Zugriff-einer-Serverfreigabe-ueber-den-DNS-Alias-CNAME.html</link>
            <category>AD / Domäne / FSMO</category>
            <category>AD und Dienste</category>
            <category>Server</category>
            <category>Windows</category>
    
    <comments>http://hope-this-helps.de/serendipity/archives/230-Fehler-beim-Zugriff-einer-Serverfreigabe-ueber-den-DNS-Alias-CNAME.html#comments</comments>
    <wfw:comment>http://hope-this-helps.de/serendipity/wfwcomment.php?cid=230</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://hope-this-helps.de/serendipity/rss.php?version=2.0&amp;type=comments&amp;cid=230</wfw:commentRss>
    

    <author>nospam@example.com (Ralf Entner)</author>
    <content:encoded>
    &lt;strong&gt;Problem:&lt;/strong&gt;&lt;br /&gt;
Es wird folgende Fehlermeldung angezeigt, wenn ein Clientcomputer eine Freigabe (z.B. Logon-Skript) auf einem Dateiserver über den Alias-Namen (DNS CNAME) zu öffnen versucht: &lt;blockquote&gt;Systemfehler 52 ist aufgetreten. &lt;br /&gt;
Ein doppelter Name ist in dem Netzwerk vorhanden. &lt;/blockquote&gt;&lt;br /&gt;
&lt;strong&gt;Lösung:&lt;/strong&gt;&lt;br /&gt;
1.) Erstellen Sie den CNAME-Eintrag für den Dateiserver auf dem entsprechenden DNS-Server, wenn der CNAME-Eintrag nicht bereits vorhanden ist.&lt;br /&gt;
2.) Wenden Sie auf dem Dateiserver die folgende Registrierungsänderung an.Starten Sie den Registrierungseditor (Regedt32.exe).&lt;br /&gt;
3.) Suchen Sie den folgenden Registrierungsschlüssel und klicken Sie darauf&lt;blockquote&gt;HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\LanmanServer\Parameters&lt;/blockquote&gt;&lt;br /&gt;
4.) Klicken Sie in dem &lt;em&gt;Menü &quot;Bearbeiten&quot; &lt;/em&gt;auf &lt;strong&gt;&quot;Wert hinzufügen&quot;&lt;/strong&gt;, und fügen Sie dann den folgenden Registrierungswert hinzu:&lt;blockquote&gt;Wertname: DisableStrictNameChecking &lt;br /&gt;
Datentyp: REG_DWORD &lt;br /&gt;
Basis: Dezimal &lt;br /&gt;
Wert: 1 &lt;/blockquote&gt;5.) Beenden Sie den Registrierungseditor und starten Sie den Dateiserver neu&lt;br /&gt;
&lt;br /&gt;
Quelle: &lt;a href=&quot;http://support.microsoft.com/kb/281308/de&quot;&gt;Microsoft KB Artikel-ID: 281308&lt;/a&gt; 
    </content:encoded>

    <pubDate>Sun, 16 May 2010 21:25:49 +0200</pubDate>
    <guid isPermaLink="false">http://hope-this-helps.de/serendipity/archives/230-guid.html</guid>
    <category>2008</category>
<category>ad / domäne</category>
<category>ad und dienste</category>
<category>cname</category>
<category>dns</category>
<category>server</category>
<category>windows</category>

</item>
<item>
    <title>Event 2103 - AD-Datenbank wurde anhand eines Verfahrens nicht unterstützte Wiederherstellung wiederhergestellt</title>
    <link>http://hope-this-helps.de/serendipity/archives/176-Event-2103-AD-Datenbank-wurde-anhand-eines-Verfahrens-nicht-unterstuetzte-Wiederherstellung-wiederhergestellt.html</link>
            <category>AD / Domäne / FSMO</category>
    
    <comments>http://hope-this-helps.de/serendipity/archives/176-Event-2103-AD-Datenbank-wurde-anhand-eines-Verfahrens-nicht-unterstuetzte-Wiederherstellung-wiederhergestellt.html#comments</comments>
    <wfw:comment>http://hope-this-helps.de/serendipity/wfwcomment.php?cid=176</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://hope-this-helps.de/serendipity/rss.php?version=2.0&amp;type=comments&amp;cid=176</wfw:commentRss>
    

    <author>nospam@example.com (Ralf Entner)</author>
    <content:encoded>
    &lt;strong&gt;Problem&lt;/strong&gt;&lt;br /&gt;
Nach einem Restore eines DCs aus einem Snapshot oder ähnlichen Wiederherstellungsvorgängen wird im Eventlog folgender Eintrag protokolliert:&lt;br /&gt;
&lt;br /&gt;
&lt;blockquote&gt;Ereignistyp: Fehler &lt;br /&gt;
Ereignis Quelle: NTDS Allgemein &lt;br /&gt;
Ereigniskategorie: Steuerung &lt;br /&gt;
Ereignis-ID: 2103&lt;br /&gt;
Beschreibung: Die Active Directory-Datenbank wurde anhand eines Verfahrens nicht unterstützte Wiederherstellung wiederhergestellt. Active Directory können Benutzer anmelden, während das Problem weiterhin besteht. Als Ergebnis wurde der Netlogon-Dienst angehalten. Benutzer Aktion Siehe vorherige Ereignisprotokolle Einzelheiten. Weitere Informationen finden Sie im Hilfe- und Supportcenter unter http://support.microsoft.com.&lt;br /&gt;
&lt;/blockquote&gt;&lt;br /&gt;
&lt;br /&gt;
Wenn man eine manuelle Replikation unter AD Standort und Dienste durchführt erhält man die Fehlermeldung:&lt;br /&gt;
&lt;br /&gt;
&lt;blockquote&gt;Der Quellserver nimmt keine Replikationsanforderung entgegen&lt;/blockquote&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;Lösung&lt;/strong&gt;&lt;br /&gt;
Durch die &quot;unspupportete&quot; Wiederherstellung der AD Datenbank wird diese als &quot;not writeable&quot; gesetzt und es ist keine Replikation möglich. Mit folgendem Workaround kann man die Replikation wieder ans laufen bekommen...&lt;br /&gt;
&lt;br /&gt;
• &lt;strong&gt;HKLM\System\CurrentControlSet\Services\NTDS\Parameters&lt;/strong&gt; &lt;br /&gt;
   ?“&lt;em&gt;Dsa Not Writable&lt;/em&gt;” von 4 auf 0 setzen&lt;br /&gt;
   ?REG_DWORD “Ignore USN Rollback” anlegen und auf 0 setzen (Damit wird ein erneutes Auftreten des Fehlers unterdrückt)&lt;br /&gt;
&lt;br /&gt;
• &lt;strong&gt;Server neu starten&lt;/strong&gt; (NetLogon sollte nun laufen)&lt;br /&gt;
&lt;br /&gt;
• &lt;strong&gt;Replikation wieder aktivieren:&lt;/strong&gt; &lt;br /&gt;
   ?&lt;em&gt;repadmin /options “Servername” -DISABLE_OUTBOUND_REPL&lt;/em&gt;&lt;br /&gt;
   ?&lt;em&gt;repadmin /options “Servername” -DISABLE_INBOUND_REPL&lt;/em&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;Quellen:&lt;/strong&gt; &lt;br /&gt;
&lt;u&gt;&lt;a href=&quot;http://www.andreas-exner.eu/index.php/2010/01/13/hyper-v-snapshots-and-domain-controllers-how-to-resolve-activedirectory_domainservice-event-2103-usn-rollback&quot;&gt;How to resolve ActiveDirectory_DomainService event 2103 USN Rollback&lt;/a&gt;&lt;/u&gt;&lt;br /&gt;
&lt;u&gt;&lt;a href=&quot;http://www.hyper-v-server.de/hypervisior/hyper-v-ads-controller-und-angewendete-snapshots/&quot;&gt;Hyper-V, ADS-Controller und angewendete Snapshots [Update]&lt;/a&gt;&lt;/u&gt; 
    </content:encoded>

    <pubDate>Tue, 23 Feb 2010 15:24:37 +0100</pubDate>
    <guid isPermaLink="false">http://hope-this-helps.de/serendipity/archives/176-guid.html</guid>
    <category>AD / Domäne</category>

</item>
<item>
    <title>Tombstone abgelaufen</title>
    <link>http://hope-this-helps.de/serendipity/archives/59-Tombstone-abgelaufen.html</link>
            <category>AD / Domäne / FSMO</category>
    
    <comments>http://hope-this-helps.de/serendipity/archives/59-Tombstone-abgelaufen.html#comments</comments>
    <wfw:comment>http://hope-this-helps.de/serendipity/wfwcomment.php?cid=59</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://hope-this-helps.de/serendipity/rss.php?version=2.0&amp;type=comments&amp;cid=59</wfw:commentRss>
    

    <author>nospam@example.com (Ralf Entner)</author>
    <content:encoded>
    &lt;strong&gt;Problem:&lt;/strong&gt;&lt;br /&gt;
&lt;br /&gt;
Replikation zwischen DCs wurde beendet aufgrund der abgelaufenen Tombstone-Zeit&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;Lösung:&lt;/strong&gt;&lt;br /&gt;
&lt;br /&gt;
Zur Replizierung ist es nötig einen Registry-Eintrag einzufügen/ändern, damit der DC wieder die Replizierung von einem abgelaufenen DC annimmt.&lt;br /&gt;
&lt;br /&gt;
Click Start, click Run, type regedit, and then click OK.&lt;br /&gt;
&lt;br /&gt;
Navigate to &lt;em&gt;&lt;strong&gt;HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\NTDS\Parameters&lt;/strong&gt;&lt;/em&gt;&lt;br /&gt;
&lt;br /&gt;
In the details pane, create or edit the registry entry as follows:&lt;br /&gt;
&lt;br /&gt;
If the registry entry exists in the details pane, modify the entry as follows:&lt;br /&gt;
&lt;br /&gt;
In the details pane, right-click &lt;em&gt;&lt;strong&gt;Allow Replication With Divergent and Corrupt Partner&lt;/strong&gt;&lt;/em&gt;, and then click Modify.&lt;br /&gt;
&lt;br /&gt;
In the &lt;em&gt;&lt;strong&gt;Value data&lt;/strong&gt;&lt;/em&gt; box, type &lt;em&gt;&lt;strong&gt;1&lt;/strong&gt;&lt;/em&gt;, and then click OK.&lt;br /&gt;
&lt;br /&gt;
If the registry entry does not exist, create the entry as follows:&lt;br /&gt;
&lt;br /&gt;
Right-click Parameters, click New, and then click &lt;em&gt;&lt;strong&gt;DWORD&lt;/strong&gt;&lt;/em&gt; Value.&lt;br /&gt;
&lt;br /&gt;
Type the name &lt;em&gt;&lt;strong&gt;Allow Replication With Divergent and Corrupt Partner&lt;/strong&gt;&lt;/em&gt;, and then press ENTER.&lt;br /&gt;
&lt;br /&gt;
Double-click the entry. In the &lt;em&gt;&lt;strong&gt;Value data&lt;/strong&gt;&lt;/em&gt; box, type &lt;em&gt;&lt;strong&gt;1&lt;/strong&gt;&lt;/em&gt;, and then click OK.&lt;br /&gt;
&lt;br /&gt;
&lt;u&gt;&lt;strong&gt;Reset the Registry to Protect Against Outdated Replication&lt;/strong&gt;&lt;/u&gt;&lt;br /&gt;
&lt;br /&gt;
When you are satisfied that lingering objects have been removed and replication has occurred successfully from the source domain controller, edit the registry to return the value in Allow Replication With Divergent and Corrupt Partner to 0.&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;Technet-Link: &lt;/strong&gt;&lt;u&gt;&lt;a href=&quot;http://technet.microsoft.com/en-us/library/cc757610%28WS.10%29.aspx&quot;&gt;Event ID 2042 - If a domain controller has not replicated with its partner for longer than a tombstone lifetime&lt;/a&gt;&lt;/u&gt; 
    </content:encoded>

    <pubDate>Mon, 08 Feb 2010 11:07:52 +0100</pubDate>
    <guid isPermaLink="false">http://hope-this-helps.de/serendipity/archives/59-guid.html</guid>
    <category>AD / Domäne</category>

</item>

</channel>
</rss>
