PC Review


Reply
Thread Tools Rate Thread

2000 Server not listed in Active Directory

 
 
Koolman365@hotmail.com
Guest
Posts: n/a
 
      16th Jun 2006
I have a 2000 Server that is not showing up in Active Directory. If I
browse the network which consists of 6 other 2000 servers, I don't see
it either. I can ping the server name and it responds, it lists in
DNS. I tried removing the Server from the domain (not a domain
controller), setting it to a workgroup, then joining it back to the
domain; same problem. This server actually is used as my Terminal
Services server, and is used quite frequently, so there aren't any
issues connecting to it on the network. If I go into ADSIEdit or
Active Directory Sites and Services, the server isn't listed in there
either. Should I try adding them in there, or should I go about it in
a more thorough approach? The reason I need to have this show up is
that I can't install Backup Exec Remote Agent onto this server since it
doesn't list in the network. Any help would be greatly appreciated.
Thanks.

 
Reply With Quote
 
 
 
 
Jorge Silva
Guest
Posts: n/a
 
      16th Jun 2006
Hi

If the server isn't a DC it does show up in ADSS, and isn't in the Domain
Controllers OU Either.
Check computers container (default for computers and member servers).
--
I hope that the information above helps you

Good Luck
Jorge Silva
MCSA
Systems Administrator

<(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> I have a 2000 Server that is not showing up in Active Directory. If I
> browse the network which consists of 6 other 2000 servers, I don't see
> it either. I can ping the server name and it responds, it lists in
> DNS. I tried removing the Server from the domain (not a domain
> controller), setting it to a workgroup, then joining it back to the
> domain; same problem. This server actually is used as my Terminal
> Services server, and is used quite frequently, so there aren't any
> issues connecting to it on the network. If I go into ADSIEdit or
> Active Directory Sites and Services, the server isn't listed in there
> either. Should I try adding them in there, or should I go about it in
> a more thorough approach? The reason I need to have this show up is
> that I can't install Backup Exec Remote Agent onto this server since it
> doesn't list in the network. Any help would be greatly appreciated.
> Thanks.
>



 
Reply With Quote
 
 
 
 
Koolman365@hotmail.com
Guest
Posts: n/a
 
      16th Jun 2006
I guess I left out the obvious, it's not in the Computers container.
That's the first place I had checked. Any other ideas?

Jorge Silva wrote:
> Hi
>
> If the server isn't a DC it does show up in ADSS, and isn't in the Domain
> Controllers OU Either.
> Check computers container (default for computers and member servers).
> --
> I hope that the information above helps you
>
> Good Luck
> Jorge Silva
> MCSA
> Systems Administrator
>
> <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
> > I have a 2000 Server that is not showing up in Active Directory. If I
> > browse the network which consists of 6 other 2000 servers, I don't see
> > it either. I can ping the server name and it responds, it lists in
> > DNS. I tried removing the Server from the domain (not a domain
> > controller), setting it to a workgroup, then joining it back to the
> > domain; same problem. This server actually is used as my Terminal
> > Services server, and is used quite frequently, so there aren't any
> > issues connecting to it on the network. If I go into ADSIEdit or
> > Active Directory Sites and Services, the server isn't listed in there
> > either. Should I try adding them in there, or should I go about it in
> > a more thorough approach? The reason I need to have this show up is
> > that I can't install Backup Exec Remote Agent onto this server since it
> > doesn't list in the network. Any help would be greatly appreciated.
> > Thanks.
> >


 
Reply With Quote
 
Richard Mueller
Guest
Posts: n/a
 
      16th Jun 2006
I assume the server is not a DC. I assume you know the NetBIOS name of the
machine. You can search for the object in ADUC by filtering on
sAMAccountName, which is the NetBIOS name of the machine with "$" appended
on the end. Use "View", "Filter Options...", select "Create custom filter",
click "Customize", select the "Advanced" tab and enter an LDAP query similar
to:

(sAMAccountName=MyComputer$)

where the NetBIOS name is "MyComputer". Also, you can use this filter with
csvde or ldidfe. Or, you can use the NameTranslate object in a VBScript
program to convert the Domain\sAMAccountName of the object to the
distinguishedName, which reveals it's location in AD. A VBScript example:
=============
' Constants for the NameTranslate object.

Const ADS_NAME_INITTYPE_GC = 3
Const ADS_NAME_TYPE_NT4 = 3
Const ADS_NAME_TYPE_1779 = 1

' Specify the NetBIOS name of the domain and the NT name

' of the object. Computer names have "$" appended.
strNTName = "MyDomain\MyComputer$"

' Use the NameTranslate object to convert the NT name to the
' Distinguished Name.
Set objTrans = CreateObject("NameTranslate")

' Initialize NameTranslate by locating the Global Catalog.
objTrans.Init ADS_NAME_INITTYPE_GC, ""
' Use the Set method to specify the NT format of the object name.
objTrans.Set ADS_NAME_TYPE_NT4, strNTName

' Use the Get method to retrieve the RPC 1779 Distinguished Name.
strDN = objTrans.Get(ADS_NAME_TYPE_1779)

Wscript.Echo strDN

--
Richard
Microsoft MVP Scripting and ADSI
Hilltop Lab - http://www.rlmueller.net


<(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
>I guess I left out the obvious, it's not in the Computers container.
> That's the first place I had checked. Any other ideas?
>
> Jorge Silva wrote:
>> Hi
>>
>> If the server isn't a DC it does show up in ADSS, and isn't in the Domain
>> Controllers OU Either.
>> Check computers container (default for computers and member servers).
>> --
>> I hope that the information above helps you
>>
>> Good Luck
>> Jorge Silva
>> MCSA
>> Systems Administrator
>>
>> <(E-Mail Removed)> wrote in message
>> news:(E-Mail Removed)...
>> > I have a 2000 Server that is not showing up in Active Directory. If I
>> > browse the network which consists of 6 other 2000 servers, I don't see
>> > it either. I can ping the server name and it responds, it lists in
>> > DNS. I tried removing the Server from the domain (not a domain
>> > controller), setting it to a workgroup, then joining it back to the
>> > domain; same problem. This server actually is used as my Terminal
>> > Services server, and is used quite frequently, so there aren't any
>> > issues connecting to it on the network. If I go into ADSIEdit or
>> > Active Directory Sites and Services, the server isn't listed in there
>> > either. Should I try adding them in there, or should I go about it in
>> > a more thorough approach? The reason I need to have this show up is
>> > that I can't install Backup Exec Remote Agent onto this server since it
>> > doesn't list in the network. Any help would be greatly appreciated.
>> > Thanks.
>> >

>



 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
question on upgrading from active directory 2000 to active directory 2003 Gary M Microsoft Windows 2000 Active Directory 2 16th Mar 2007 08:57 PM
2000 Server not listed in Active Directory Koolman365@hotmail.com Microsoft Windows 2000 0 16th Jun 2006 08:51 PM
Active Directory, Active Directory Federation Services and Microsoft Integration Identiy Server Mas Libman [MSFT] Microsoft Windows 2000 Active Directory 0 6th May 2005 10:55 PM
[Active Directory] On what ground does LDAP connect to Active Directory RTT Microsoft VB .NET 0 12th Apr 2005 04:20 PM
Arguments for 2003 Active directory versus 2000 active directory? =?Utf-8?B?c3RlcGhlbmJiYWtlcg==?= Microsoft Windows 2000 Active Directory 4 23rd Dec 2003 05:40 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 12:09 PM.