 




<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Unable to Join Domain from Client PC</title>
	<atom:link href="http://itknowledgeexchange.techtarget.com/itanswers/unable-to-join-domain-from-client-pc/feed/" rel="self" type="application/rss+xml" />
	<link>http://itknowledgeexchange.techtarget.com/itanswers/unable-to-join-domain-from-client-pc/</link>
	<description></description>
	<lastBuildDate>Tue, 21 May 2013 09:44:41 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	<item>
		<title>By: charlie8max</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/unable-to-join-domain-from-client-pc/#comment-99721</link>
		<dc:creator>charlie8max</dc:creator>
		<pubDate>Fri, 02 Dec 2011 13:18:30 +0000</pubDate>
		<guid isPermaLink="false">#comment-99721</guid>
		<description><![CDATA[There is some really good stuff on this page &lt;a href=&quot;http://www.breakdowncoveroffers.org&quot;&gt;]]></description>
		<content:encoded><![CDATA[<p>There is some really good stuff on this page <a href="http://www.breakdowncoveroffers.org"></a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: voodooclanboy</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/unable-to-join-domain-from-client-pc/#comment-96489</link>
		<dc:creator>voodooclanboy</dc:creator>
		<pubDate>Tue, 13 Sep 2011 05:06:28 +0000</pubDate>
		<guid isPermaLink="false">#comment-96489</guid>
		<description><![CDATA[It happens generally when it is unable to correctly resolve the name of the domain controller in a timely fashion.
 Mentioned Below is a list of common reasons for the same. 
In an SBS domain the server should be the DHCP server, and if so, items 2 and 3 below should be automatically set through DHCP. However if addressing is statically assigned or you are using a router you may need to make changes. Items 2 and 3 are also basic networking requirements of a Windows Domain, not just important for joining the domain.
 
1.       If there is more than 1 network adapter installed , wired or wireless, disable all but 1, preferably wired, until after joined to the domain
2.       Make sure, using IPconfig /all, that the client&#039;s DNS points ONLY to your internal DNS servers, in this case the SBS. Do not allow a router or ISP to be added as an alternate.
3.       IPconfig /all should also show next to “Connection-specific DNS Suffix” your internal domain suffix (MyDomain.local). If not you need to add the domain suffix to the client machine. To do so insert it in the &quot;DNS suffix for this connection&quot; box under the DNS tab of the NIC&#039;s advanced TCP/IP IPv4  properties
4.       If there are any 3rd party firewalls or security suites installed, disable them until joined to the domain
5.       If still failing add the connect web site to the “trusted” sites list in Internet Explorer under Internet options / security
6.       On a few occasions Bluetooth accessories such as keyboards and mice have been known to interfere with the connect wizards. If necessary temporarily replace these with wired devices until domain joined.

hope this would work.

Thank you
Anil
Lepide softwares]]></description>
		<content:encoded><![CDATA[<p>It happens generally when it is unable to correctly resolve the name of the domain controller in a timely fashion.<br />
 Mentioned Below is a list of common reasons for the same.<br />
In an SBS domain the server should be the DHCP server, and if so, items 2 and 3 below should be automatically set through DHCP. However if addressing is statically assigned or you are using a router you may need to make changes. Items 2 and 3 are also basic networking requirements of a Windows Domain, not just important for joining the domain.</p>
<p>1.       If there is more than 1 network adapter installed , wired or wireless, disable all but 1, preferably wired, until after joined to the domain<br />
2.       Make sure, using IPconfig /all, that the client&#8217;s DNS points ONLY to your internal DNS servers, in this case the SBS. Do not allow a router or ISP to be added as an alternate.<br />
3.       IPconfig /all should also show next to “Connection-specific DNS Suffix” your internal domain suffix (MyDomain.local). If not you need to add the domain suffix to the client machine. To do so insert it in the &#8220;DNS suffix for this connection&#8221; box under the DNS tab of the NIC&#8217;s advanced TCP/IP IPv4  properties<br />
4.       If there are any 3rd party firewalls or security suites installed, disable them until joined to the domain<br />
5.       If still failing add the connect web site to the “trusted” sites list in Internet Explorer under Internet options / security<br />
6.       On a few occasions Bluetooth accessories such as keyboards and mice have been known to interfere with the connect wizards. If necessary temporarily replace these with wired devices until domain joined.</p>
<p>hope this would work.</p>
<p>Thank you<br />
Anil<br />
Lepide softwares</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: pjb0222</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/unable-to-join-domain-from-client-pc/#comment-95237</link>
		<dc:creator>pjb0222</dc:creator>
		<pubDate>Fri, 12 Aug 2011 17:32:02 +0000</pubDate>
		<guid isPermaLink="false">#comment-95237</guid>
		<description><![CDATA[You can script your join.  Just depends on the level of automation you need.  You just need to take into account name collisions on rebuilds.

&lt;pre&gt;netdom join %COMPUTERNAME% /domain:[Domain] /userd:[DMID] /passwordd:([DMPW] &#124; *) /ou:[OU_String],[DC_String]
IF %ErrorLevel% EQU 2224 (
    Echo Collided with existing account
    GOTO :Rejoin
    )
IF %ErrorLevel% EQU 2691 (
    Echo Collided with existing account
    GOTO :Rejoin
    )
IF ErrorLevel 1 (
    ECHO FAILED to join domain
    GOTO :FAIL
    )
IF %ErrorLevel% EQU 0 ECHO Success
GOTO :Done

:Rejoin
cmd /c netdom join %COMPUTERNAME% /domain:[Domain] /userd:[DMID] /passwordd:([DMPW] &#124; *)
IF ErrorLevel 1 (
    ECHO FAILED to join domain
    GOTO :FAIL
    )
dsquery computer domainroot -d [Domain] -U [DMID] -P ([DMPW], *) -name %ComputerName%&#124;dsmove -d %JoinWorkgroup% -newparent &quot;[OU_String],[DC_String]&quot; -U [DMID] -P ([DMPW] &#124; *)
IF ErrorLevel 1 (
    ECHO FAILED moving object
    GOTO :FAIL
    )
ECHO Success
GOTo :DONE

:FAIL
ECHO Failed to add computer to domain and place object in correct OU.
GOTO :DONE


:DONE
&lt;/pre&gt;


OU_String = OU string breakout.
DC_String = Domain Name string.  i.e. DC=Lvl2,DC=Lvl1,DC=Lvl0
You can use the DSQuery above on a system to see how this breaks out for your domain
  i.e. &lt;pre&gt;&quot;CN=[Computer],OU=Level3,OU=Laptop,OU=computerss,DC=dmn2,DC=dmn2,DC=com&quot;&lt;/pre&gt;]]></description>
		<content:encoded><![CDATA[<p>You can script your join.  Just depends on the level of automation you need.  You just need to take into account name collisions on rebuilds.</p>
<pre>netdom join %COMPUTERNAME% /domain:[Domain] /userd:[DMID] /passwordd:([DMPW] | *) /ou:[OU_String],[DC_String]
IF %ErrorLevel% EQU 2224 (
    Echo Collided with existing account
    GOTO :Rejoin
    )
IF %ErrorLevel% EQU 2691 (
    Echo Collided with existing account
    GOTO :Rejoin
    )
IF ErrorLevel 1 (
    ECHO FAILED to join domain
    GOTO :FAIL
    )
IF %ErrorLevel% EQU 0 ECHO Success
GOTO <img src='http://itknowledgeexchange.techtarget.com/itanswers/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> one

:Rejoin
cmd /c netdom join %COMPUTERNAME% /domain:[Domain] /userd:[DMID] /passwordd:([DMPW] | *)
IF ErrorLevel 1 (
    ECHO FAILED to join domain
    GOTO :FAIL
    )
dsquery computer domainroot -d [Domain] -U [DMID] -P ([DMPW], *) -name %ComputerName%|dsmove -d %JoinWorkgroup% -newparent "[OU_String],[DC_String]" -U [DMID] -P ([DMPW] | *)
IF ErrorLevel 1 (
    ECHO FAILED moving object
    GOTO :FAIL
    )
ECHO Success
GOTo <img src='http://itknowledgeexchange.techtarget.com/itanswers/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> ONE

:FAIL
ECHO Failed to add computer to domain and place object in correct OU.
GOTO <img src='http://itknowledgeexchange.techtarget.com/itanswers/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> ONE

 <img src='http://itknowledgeexchange.techtarget.com/itanswers/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> ONE
</pre>
<p>OU_String = OU string breakout.<br />
DC_String = Domain Name string.  i.e. DC=Lvl2,DC=Lvl1,DC=Lvl0<br />
You can use the DSQuery above on a system to see how this breaks out for your domain<br />
  i.e.
<pre>"CN=[Computer],OU=Level3,OU=Laptop,OU=computerss,DC=dmn2,DC=dmn2,DC=com"</pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: sreenivashan</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/unable-to-join-domain-from-client-pc/#comment-95225</link>
		<dc:creator>sreenivashan</dc:creator>
		<pubDate>Fri, 12 Aug 2011 08:48:47 +0000</pubDate>
		<guid isPermaLink="false">#comment-95225</guid>
		<description><![CDATA[Yes sir, once I re name the Comptuer name. after that it showing as A directory does not exsit.]]></description>
		<content:encoded><![CDATA[<p>Yes sir, once I re name the Comptuer name. after that it showing as A directory does not exsit.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tchin</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/unable-to-join-domain-from-client-pc/#comment-95192</link>
		<dc:creator>tchin</dc:creator>
		<pubDate>Thu, 11 Aug 2011 18:13:25 +0000</pubDate>
		<guid isPermaLink="false">#comment-95192</guid>
		<description><![CDATA[Is this happening to specific pc&#039;s or all pc&#039;s? if its only specific ones, have you tried rejoining these machines to the domain? On the client machine, put them into a workgroup &gt; reboot &gt; and then rejoin.]]></description>
		<content:encoded><![CDATA[<p>Is this happening to specific pc&#8217;s or all pc&#8217;s? if its only specific ones, have you tried rejoining these machines to the domain? On the client machine, put them into a workgroup &gt; reboot &gt; and then rejoin.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: carlosdl</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/unable-to-join-domain-from-client-pc/#comment-95174</link>
		<dc:creator>carlosdl</dc:creator>
		<pubDate>Thu, 11 Aug 2011 14:03:06 +0000</pubDate>
		<guid isPermaLink="false">#comment-95174</guid>
		<description><![CDATA[Did you try the suggestions from the error message ? Have you checked if a computer account with that name already exists in the domain ?

What troubleshooting have you done so far ?]]></description>
		<content:encoded><![CDATA[<p>Did you try the suggestions from the error message ? Have you checked if a computer account with that name already exists in the domain ?</p>
<p>What troubleshooting have you done so far ?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using memcached
Database Caching 3/8 queries in 0.038 seconds using memcached
Object Caching 355/356 objects using memcached

Served from: itknowledgeexchange.techtarget.com @ 2013-05-21 10:13:48 -->