Domain? Workgroup? Active Directory? Ahh!, come help a noob


Recommended Posts

I have a network of 3 computers which were all communicating fine. In an attempt to speed one of them up, I reformatted it (Windows XP Professional) and all went well . But now I'm faced with reconnecting the computer with the small business network as it's vital to the productivity of the company. Now, with my limited networking experience I've always simply set them all to a similar workgroup and set a few sharing permissions and all was well. But using the other two computers as reference I see instead of being in a workgroup they're part of a "domain". I assumed as long as I entered the domain address ("five6.local") that is listed on the other two computers I would be popped into the network and all would be well. Instead, I get the following error message:

A domain controller for the domain five6.local could not be contacted

Googling the error gives me swarms of people in varying technical trouble with every one of them having a more sophisticated system and superior knowledge on the subject. Now, heres what I find odd about the whole thing: From what I can deduce, this is an error generated while trying to interact with Active Directory. And I believe Active directory will only run on a server operating system. But there is none in the group, It's just three Windows XP Professional machines. And it's the machine I reformatted wasn't the server because the other two computers are still communicating fine.

What am I missing here?

And how do I get this damn machine back in the network?!

All thoughts, comments, and inane moral-boosting cheers are much appreciated.

http://technet.micro...y/bb456990.aspx

only thing i can think of is either you're not logged in as an administrator, did not provide a login with domain join credentials or some kind of network issue is preventing this computer from contacting the domain controller.

(pro tip: I don't really have much experience with windows active directory/domain environments, i usually administer linux networks)

To find out what the hostname of the computer that is running your domain run the following in a command prompt on one of the computers that is currently in the domain:

echo %logonserver%

Now try pinging it from the same computer, if you can ping it, it does exist somewhere on your network. If you can't ping it try navigating to a share on it, \\HOSTNAME, if you can see shares on it then again it does exist and isn't allowing incoming echo request which is fine. If you can't ping it or navigate shares then it either isn't part of your network any more in which case we can't help you really or it is turned off or there is some other factor blocking access to it such as a firewall.

If you can ping or navigate to shares on it, try pinging the hostname from the computer you reformatted if that fails try pinging the IP address. If the hostname fails but the IP address works than there might be a host record on the other two computers for your domain. Open the file called hosts in notepad which is found in C:\WINDOWS\system32\drivers\etc

If there is a line in there along the same lines of

192.168.0.200 five6.local

Try adding the same on the new computer and see if that works.

I hope this makes sense, it is far two early!

It sounds to me like these 3 computers USED to be connected to a server, but are not any more.

You can connect a PC to a server, join it to Active Directory running on the server, and then disconnect from the server and the users that were logged in while the server was available will continue to function.

I would check with the person in charge that you are doing work for and see if they are aware of the existance of the server that was once connected to these computers or where the computers came from.

If there is no longer any server to connect to, you should be able to run it in a workgroup while the existing computers stay on the domain (it will still be accessible by \\COMPUTERNAME, but will not show under the same group in My Network Places). This is the easiest thing to do without messing with the other computers.

Ideally (and I would only do this if you were confident in this), it would be best to switch all of the computers no longer connected to a domain onto a workgroup instead. You will lose all the user profiles so you would need to recreate them and restore the data (pretty much the same as a format c: job without needing to reinstall the OS).

Given the age of XP and therefore the age of the computers I would be more inclined just to get it up and running without messing with the other computers until such time they are ready to upgrade to new PCs (running Windows 7 presumably) and then the problem won't matter anymore.

Rules of a domain network...

dns. no other dns servers are in the network properties other than the domain controller or a domain controller of the network. It will forward internet domain lookups to the appropriate server for you to be able to get to the internet. Internet dns servers do not know about internal domains and will give you the error you are seeing.

IMO, you aren't using dhcp correctly to hand out dns servers or you manually configured dns in your network properties to an internet dns server. This is the most common issue that would cause the situation you are seeing, this is not the only thing that would cause the issue you are seeing....most common with AD "noobs" because they don't understand how networking works or how things get referenced on a network. AD does not use netbios to figure out what/where the computers are, it uses DNS...internet DNS servers do not know anything about your internal network so it can't resolve or find pc1.five6.local or server.five6.local. DNS plays such a huge role in AD, it isn't something to get wrong or to go around.

Workgroups do not revolve around dns to connect to local pcs or local servers. They can use netbios/broadcast to connect and know where pc's are. AD does not, it uses DNS to query and lookups and it is embedded into AD.

The fact that two of the machines are on a domain means there must've been a domain controller (ie. Windows Server) on the network at some point in time, even if there isn't now.

From one of the two machines on the domain, do a: ping five6.local. If you get a reply, this will be the IP address of your domain controller. Do an ipconfig /all also. More often than not, in a live domain the DHCP service will also run on the same box as the domain. If you don't get a response to the ping, then you clearly don't have a domain controller any more and there's going to be no way to get that rebuilt third machine back onto the domain. In that circumstance, you have two options... either find that domain controller and plug it back in/turn it on, or remove those other two machines from the domain and put all three on the same (ie. identical, not similar as you mentioned above) workgroup.

p.s. I'm a service desk technician at JCB in the UK, and am responsible for the daily operation and upkeep of our Active Directory Domain with over 4000 domain members across the UK and Europe. I also run a small 1 server/1 desktop/2 laptop domain running on Server 2008R2 at my house.

To find out what the hostname of the computer that is running your domain run the following in a command prompt on one of the computers that is currently in the domain:

echo %logonserver%

Now try pinging it from the same computer, if you can ping it, it does exist somewhere on your network. If you can't ping it try navigating to a share on it, \\HOSTNAME, if you can see shares on it then again it does exist and isn't allowing incoming echo request which is fine. If you can't ping it or navigate shares then it either isn't part of your network any more in which case we can't help you really or it is turned off or there is some other factor blocking access to it such as a firewall.

If you can ping or navigate to shares on it, try pinging the hostname from the computer you reformatted if that fails try pinging the IP address. If the hostname fails but the IP address works than there might be a host record on the other two computers for your domain. Open the file called hosts in notepad which is found in C:\WINDOWS\system32\drivers\etc

If there is a line in there along the same lines of

192.168.0.200 five6.local

Try adding the same on the new computer and see if that works.

I hope this makes sense, it is far two early!

This is exactly the sort of "flow-chart" style response I was looking for. This along with the bits supplied by everyone else (especially TCLN Ryster, thank you sir) should be enough to get this guy running. I figure worst case scenario I'll just switch it over to a workgroup.

I appreciate all your help immensely, thank you everyone.

If there is no domain controller existing on the network than sure you can switch everyone over to a workgroup, but if there is a internal domain with sbs fix the issue with the pc. It is probably a very easy fix but if you don't understand or don't know how a domain works you should bring in someone who knows and not switch over to a workgroup as it can and will create other issues. there are many benefits to active directory that you give up by switching over to workgroup, and if you do not know or understand you should step away from that situation.

This is exactly the sort of "flow-chart" style response I was looking for. This along with the bits supplied by everyone else (especially TCLN Ryster, thank you sir) should be enough to get this guy running. I figure worst case scenario I'll just switch it over to a workgroup.

I appreciate all your help immensely, thank you everyone.

You're welcome, feel free to hit me up on a private message or something if you need further assistance. I have a large amount of experience with all windows server versions going back to 2000 and have administered AD, DNS and DHCP on all of them. I can help you out if you do find the domain controller and need help resurrecting it or something.

I want to go on record and say that his machines are located in a satellite office, and they are tunneling in and connecting to server located in a remote location.

What os is the machine in question running? Look at tue other machines that are joined

You're welcome, feel free to hit me up on a private message or something if you need further assistance. I have a large amount of experience with all windows server versions going back to 2000 and have administered AD, DNS and DHCP on all of them. I can help you out if you do find the domain controller and need help resurrecting it or something.

Thank you, it's nice to know I have a line of help for networking issues.

In case anyone is curious as to how it worked out: Pinging the server found naught. I switched all the computers over to a workgroup, and it's all working well. They are only doing basic printer/file sharing so I see no foreseeable issues with the setup. I'm still rather curious as to why they were on a domain (especially one without a server) in the first place but I feel that is going to die a mystery.

Thank you all again for your help, it was all much appreciated.

  • 2 weeks later...

Check the shell properties of each of the computer.

Plus you need to be login as an administrator. If you can't ping it or navigate shares then it either isn't part of your network any more in which case we can't help you really or it is turned off or there is some other factor blocking access to it such as a firewall.

  • 1 month later...
This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
  • Posts

    • Rockstar gives last-gen GTA V players free upgrades tomorrow by Pulasthi Ariyasinghe Rockstar is preparing to launch Grand Theft Auto VI later this year, but ahead of that, the company has revealed a new offer for some Grand Theft Auto V owners. It today announced that Xbox One and PlayStation 4 version owners of the 2013-released title will soon be receiving a free upgrade to the current generation version. The studio released the Xbox Series X|S and PlayStation 5 version of Grand Theft Auto V back in 2022, bringing significant upgrades to the original console editions. This included 60 FPS gameplay at up to 4K resolution, as well as major upgrades to textures, draw distance, and audio. Faster load times, ray tracing elements, and HDR support were also added with it. While this new and enhanced version needed a new purchase of the game to jump in, now Rockstar has decided to make it a free upgrade, dropping the $40 price tag entirely on consoles. "Beginning tomorrow, those who own any PS4 version or the digital Xbox One version of Grand Theft Auto V will be able to upgrade to the PS5 or Xbox Series X|S versions at no additional cost, and experience the best versions of GTA V and GTA Online," said the company in an official blog post. The free upgrade offer will be released tomorrow, June 18, for all Xbox One and PlayStation 4 owners of Grand Theft Auto V. Players who will be jumping in on the offer will want to check how to migrate their GTA Online profile from last-generation to current-generation consoles by heading over here. The offer lands ahead of The Kortz Center Heist hitting Grand Theft Auto Online, where players and crews will be tasked with stealing priceless international art from a prestigious gallery in Pacific Bluffs. It doesn't look like Rockstar plans to stop updating its previous game even with Grand Theft Auto VI being on the horizon. The latest title is slated to launch on November 19, 2026, across Xbox Series X|S and PlayStation 5.
    • Now comes with a money back guarantee instead of a replacement! Hah
    • Rufus 4.15.2391 Beta by Razvan Serea Rufus is a small utility that helps format and create bootable USB flash drives, such as USB keys/pendrives, memory sticks, etc. Despite its small size, Rufus provides everything you need! Oh, and Rufus is fast. For instance it's about twice as fast as UNetbootin, Universal USB Installer or Windows 7 USB download tool, on the creation of a Windows 7 USB installation drive from an ISO (with honorable mention to WiNToBootic for managing to keep up). It is also marginally faster on the creation of Linux bootable USBs from ISOs. A non-exhaustive list of Rufus supported ISOs is available here. It can be especially useful for cases where: you need to create USB installation media from bootable ISOs (Windows, Linux, UEFI, etc.) you need to work on a system that doesn't have an OS installed you need to flash a BIOS or other firmware from DOS you want to run a low-level utility Rufus 4.15.2391 Beta changelog: Improve the guards for using the "silent" option Improve the ability to cancel during write retries Fix unrestricted XML entity expansion and integer overflow in ezxml parser (courtesy of @esadowski4) [GHSA-55r2-34wg-8mv9] Fix "silent" Windows installation failing at 75% in most cases [#2960] Fix a crash during boot when using UEFI:NTFS on Snapdragon X based ARM64 platforms [#2934] Fix the first WUE option always being checked by default [#2965] Fix an infinite loop when using Windows ISOs that contain multiple WIMs Fix "Enable runtime UEFI media validation" checkbox not always being properly enabled Other WUE improvements/fixes for OneDrive removal and username validation (with thanks to @christian8641) [#2984, #2991] Download: Rufus 4.15 Beta | 1.9 MB (Open Source) Links: Rufus Home Page | Project Page @GitHub | Screenshot Get alerted to all of our Software updates on Twitter at @NeowinSoftware
    • Media Player Classic - Home Cinema 2.7.3 by Razvan Serea Media Player Classic - Home Cinema (MPC-HC) is a free and open-source video and audio player for Windows. MPC-HC is based on the original Guliverkli project (which is no longer maintained) and contains many additional features and bug fixes. As the continuation of the original Media Player Classic, MPC-HC isn’t flashy but it works with nearly any media format. MPC-HC uses DXVA technology to pass decoding operations to your modern video card, enhancing your viewing experience. And MPC-HC supports both physical and software DVDs with menus, chapter navigation, and subtitles. Overview of features A lot of people seem to be unaware of some of the awesome features that have been added to MPC-HC in the past years. Here is a list of useful options and features that everyone should know about: Dark interface Menu > View > Dark Theme When using dark theme it is also possible to change the height of the seekbar and size of the toolbar buttons. Options > Advanced Video preview on the seekbar Options > Tweaks > Show preview on seek bar Adjust playback speed Menu > Play > Playback rate The buttons in the player that control playback rate take a 2x step by default. This can be customized to smaller values (like 10%): Options > Playback > Speed step Adjusting playback speed works best with the internal audio renderer. This also has automatic pitch correction. Options > Playback > Output > Audio Renderer MPC-HC can remember playback position, so you can resume from that point later Options > Player > History You can quickly seek through a video with Ctrl + Mouse Scrollwheel. You can jump to next/previous file in a folder by pressing PageUp/PageDown. You can perform automatic actions at end of file. For example to go to next file or close player. Options > Playback > After Playback (permanent setting) Menu > Play > After Playback (for current file only) A-B repeat - You can loop a segment of a video. Press [ and ] to set start and stop markers. You can rotate/flip/mirror/stretch/zoom the video Menu > View > Pan&Scan This is also easily done with hotkeys (see below). There are lots of keyboard hotkeys and mouse actions to control the player. They can be customized as well. Options > Player > Keys Tip: there is a search box above the table. You can stream videos directly from Youtube and many other video websites You can stream videos directly from Youtube and many other video websites Put yt-dlp.exe or youtube-dl.exe in the MPC-HC installation folder. Then you can open website URLs in the player: Menu > File > Open File/URL You can even download those videos: Menu > File > Save a copy Tip: to be able to download in best quality with yt-dlp/youtube-dl, it is recommended to also put ffmpeg.exe in the MPC-HC folder. Several YDL configuration options are found here: Options > Advanced This includes an option to specify the location of the .exe in case you don't want to put it in MPC-HC folder. Play HDR video This requires using madVR or MPC Video Renderer. After installation these renderers can be selected here: Options > Playback > Output Ability to search for and download subtitles, either automatically or manually (press D): Options > Subtitles > Misc Besides all these (new) features, there have also been many bugfixes and internal improvements in the player in the past years that give better performance and stability. It also has updated internal codecs. Support was added for CUE sheets, WebVTT subtitles, etc. Media Player Classic - Home Cinema 2.7.3 changelog: Updated LAV Filters to version 0.82 Updated MPC Video Renderer to version 0.10.4.2550 Updated MPC Audio Renderer A few crash fixes, bug fixes and small improvements. Download: MPC-HC 2.7.3 (x64) | Standalone | ~20.0 MB (Open Source) Download: MPC-HC 2.7.3 (x86) | Standalone Links: MPC-HC Home Page | Screenshot Get alerted to all of our Software updates on Twitter at @NeowinSoftware
  • Recent Achievements

    • One Month Later
      Vincian earned a badge
      One Month Later
    • First Post
      Jocimo earned a badge
      First Post
    • Week One Done
      suprememobiles48 earned a badge
      Week One Done
    • One Month Later
      Windows Guy earned a badge
      One Month Later
    • One Month Later
      Prasann earned a badge
      One Month Later
  • Popular Contributors

    1. 1
      +primortal
      510
    2. 2
      +Edouard
      172
    3. 3
      PsYcHoKiLLa
      89
    4. 4
      Steven P.
      76
    5. 5
      neufuse
      69
  • Tell a friend

    Love Neowin? Tell a friend!