Cant figure out the IP address of the domain controller

I just started at a new company and would like to change my domain password but cannot because I cant communicate with the domain controller.  I can see it when I do a net view, but I cannot ping it because my DNS server is set to the local router IP
address rather than the DC IP address and the name simply won't resolve.
I suspect if I manually change my DNS server to point to the IP of the DC, my problem will go away.  I asked the local IT guy and he says 'nobody has ever asked to change their domain password before' ???!?!?!????? nor does he have any idea about the
IP and he would have to submit a ticket to the overseas IT desk (where the DC physically resides) and they would change my password manually.
Any ideas?

Robr2,
I agree with others about the ONLY DNS that must be set on ALL machines is ONLY the DC's IP address. That's it. Not the router, or the ISP's DNS. This is one of the most common configuration errors that will cause
MAJOR problems with DC to client communcations.
Here's a full explanation with a great analogy:
Active Directory's Reliance on DNS, and why you should never use an ISP's DNS address or your router as a DNS address, or any other DNS server that does not host the AD zone name
Published by Ace Fekay, MCT, MVP DS on Aug 17, 2009 at 7:35 PM  1058  2
http://msmvps.com/blogs/acefekay/archive/2009/08/17/ad-and-its-reliance-on-dns.aspx
Ace Fekay
MVP, MCT, MCITP EA, MCTS Windows 2008/R2, Exchange 2007 & Exchange 2010, Exchange 2010 EA, MCSE & MCSA 2003/2000, MCSA Messaging 2003
Microsoft Certified Trainer
Microsoft MVP - Directory Services
Complete List of Technical Blogs: http://www.delawarecountycomputerconsulting.com/technicalblogs.php
This post is provided AS-IS with no warranties or guarantees and confers no rights.

Similar Messages

  • I am trying to create a photo book, i cant figure out the file that is corrupting the whole book- help??

    it tells my "image 025 is corrupt", although i cant seem to find anything in my book named 025!
    I cant continue the order!
    gggrrrr so close to finishing!
    please help me someone!!!

    You can still have a photo for a text page background.  Go to the layout pane for the text page and click on the photo background icon:
    Then drag the photo you want as the background into the page.
    OT

  • Cant figure out the problem

    import javax.swing.*;
    import javax.swing.event.*;
    import java.awt.*;
    import java.awt.event.*;
    public class myProject extends JFrame implements ActionListener{ 
            JButton search=new JButton("Search");
            public DefaultListModel df=new DefaultListModel();
            public JList list1=new JList(df);
             check c=new check();
         public myProject(){       
              search.addActionListener(this);
         public void design(){ 
            JPanel jp1=new JPanel();
            jp1.add(search);
             getContentPane().setLayout(new BorderLayout());
             getContentPane().add(list1,BorderLayout.CENTER);
             setVisible(true);
             getContentPane().add(jp1,BorderLayout.SOUTH);            
             setSize(450,180);
         public static void main(String []args){
           myProject j=new myProject();         
              j.design();    
       public void actionPerformed(ActionEvent event) {
            myProject j=new myProject();
            if(event.getSource()==search){
                list1.removeAll();
              Object p[]={"hi","hello"
                df.addElement(p[0]);
                df.addElement(p[1]);
                c.testing();        
    public class check {
      myProject  mp;
        public check() {
        public void testing(){
               mp=new myProject();
             mp.df.addElement("how");
    }I wrote this two class the output is
    hi
    hello
    these two are printed in JList why not "how"??
    is my code writing style ok?? i always get messed up with object
    plz suggest me a better way of writing this code
    thanks in advance

    Basically you have to tell the instance of the check class that you create what instance of the project class it is that it should be checking. One place to do this is in the constructor of the check class. (eg if it is to meant to check one project only).
    Moving the code that initialises the buttons and stuff into the projects constructor, and putting your main()'s contents into an invokeLater() it would look like:
    import java.awt.BorderLayout;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import javax.swing.DefaultListModel;
    import javax.swing.JButton;
    import javax.swing.JFrame;
    import javax.swing.JList;
    import javax.swing.JPanel;
    import javax.swing.SwingUtilities;
    public class MyProject extends JFrame implements ActionListener{ 
        private JButton search;
        private DefaultListModel df;
        private JList list1;
        private ProjectChecker c;
        public MyProject(){       
            search = new JButton("Search");
            df = new DefaultListModel();
            list1 = new JList(df);
            c = new ProjectChecker(this);
            search.addActionListener(this);
        public void design(){ 
            JPanel jp1=new JPanel();
            jp1.add(search);
            getContentPane().setLayout(new BorderLayout());
            getContentPane().add(list1,BorderLayout.CENTER);
            getContentPane().add(jp1,BorderLayout.SOUTH);            
            setVisible(true);
            setSize(450,180);
        public void actionPerformed(ActionEvent event) {
            if(event.getSource() == search) {
                list1.removeAll();
                Object p[]={"hi", "hello"};
                df.addElement(p[0]);
                df.addElement(p[1]);
                c.testing();        
        public DefaultListModel getListModel() {
            return df;
        public static void main(String []args){
                SwingUtilities.invokeLater(new Runnable() {
                    public void run() {
                        MyProject j = new MyProject();         
                        j.design();    
    }and
    public class ProjectChecker {
        private MyProject proj;
        public ProjectChecker(MyProject proj) {
            this.proj = proj;
        public void testing(){
            proj.getListModel().addElement("how");
    }Notice how a couple of "new MyProject()" lines have been removed.

  • I cant figure out the notes....

    i was trying top set up the notes on my ipod but the fetures guide dosent explain a lot unless you have a mac..... and i dont so can someone "dumb" it down for me...... because it says in the feture guide to use windows explorer, the only eplorer i could think of is the internet explorer( i know im wrong) but i use firefox and i said to **** with enternet explorer

    Make sure iPod is plugged in.
    Start->My Computer->iPod (or drive F)->Notes|
    Open notepad or something similar, write whatever it is that want on your iPod in it->File (in Notepad)->Save As-> name the file whatever you want it to be->either save in the notes folder I mentioned above, or save it somewhere else & cut & paste it the notes folder.

  • Cant figure out the error

    public void datfileout()
    try
    BufferedWriter outstream = new BufferedWriter(new FileWriter("character.txt"));//declares variable that reads in from file
    for(int x=0;x<holdinfo.size();x++)
    outstream.write((String)holdinfo.get(x));//writes names to file
    outstream.newLine();//starts a new line
    outstream.close(); //closes file
    catch (Exception e)
    System.err.println("Caught exception " + e.toString());//checks for an error
    this is what i have attempted to put in an applet but it seems just to freeze every time i go in this method what should i do?

    Your code works for me :
    * Applet_Test.java
    import java.io.*;
    import java.util.*;
    import javax.swing.*;
    public class Applet_Test extends JApplet {
        public void init() {
            datfileout();
            System.out.println("Applet_Test is OK");
        ArrayList holdinfo = new ArrayList();{
            holdinfo.add("Test 1");
            holdinfo.add("Test 2");
            holdinfo.add("Test 3");
        public void datfileout() {
            try {
                BufferedWriter outstream = new BufferedWriter(new FileWriter("character.txt"));
                for(int x=0;x<holdinfo.size();x++) {
                    outstream.write((String)holdinfo.get(x));//writes names to file
                    outstream.newLine();//starts a new line
                outstream.close(); //closes file
            } catch (Exception e) {
                System.err.println("Caught exception " + e.toString());//checks for an error
    }

  • What is my problem?I cant figure out the prob

    I install oracle 11g release 2 in my windows 7 pc, but when i almost finish my installation then it will pop out this error message.
    Error in execution of additional utility tools.
    Can anyone help me?

    Pl do a search in this forum - this question has been discussed and answered many times :-) For example - DB 11gR2 for Windows ??
    HTH
    Srini

  • I accidently closed the area where u add the website at the top and now i cant figure out how to show it again so i can type n a different web address

    I accidently closed the are where u add the webiste at the top and now i cant figure out how to unhide it so i can type in a different web address

    In the menubar, Safari > View > Show Toolbar.
    Regards,
    Captfred

  • I tried to sinc my photos and i ended up deleting off my phone all the pictures.  i only ended up with one folder, and i cant figure out how to put rest of folders from my computer back on my phone.....help

    i tried to sinc my photos and i ended up deleting off my phone all the pictures.  i only ended up with one folder, and i cant figure out how to put rest of folders from my computer back on my phone.....help
    and on a second problem.  I need to know for sure that my contacts are backed up on my computer

    Create a parent folder on your computer to store the named folders of photos that you want transferred to your iPhone. Under the Photos tab for your iPhone sync preferences with iTunes, select the parent folder. All named folders of photos within will be transferred to your iPhone as separate folders or albums.
    Regarding your 2nd question, this should be easy. Your contacts should be available on your computer with or without an iPhone or any cell phone, which can be lost or stolen.
    Although contacts are included with your iPhone's backup which is updated by iTunes as the first step during the iTunes sync process, not a good idea to depend on this either since the iPhone backup includes a significant amount of other data. Contacts are designed to be synced with a supported address book app on your computer. With Windoze, this can be with Outlook 2003, 2007, or 2010 along with syncing calendar events and notes, or with the address book app used by Outlook Express with XP and by Windows Mail with Vista and Windows 7 called Windows Contacts for syncing contacts only.

  • TS2446 i cant remember the answers to my security questions.  i have reset my password and added the recovery email account but still cant figure out how to purchase new content. it asks me the same security questions. how do i fix this?

    i cant remember the answers to my security questions.  i have reset my password and added the recovery email account but still cant figure out how to purchase new content. it asks me the same security questions. i also have a temp pin. how do i fix this?

    If you've just added an address to your account then it will be an alternate/secondary email address, a rescue email address can only be added by answering 2 of your security questions. If you already had one on your account then go to https://appleid.apple.com/ and click 'Manage your Apple ID' on the right-hand side of that page and log into your account. Then click on 'Password and Security' on the left-hand side of that page and on the right-hand side you should see an option to send security question reset info to your rescue email address.
    If you don't have a rescue email addressthen you will need to contact iTunes Support / Apple to get the questions reset.
    Contacting Apple about account security : http://support.apple.com/kb/HT5699
    When they've been reset (and if you don't already have a rescue email address) you can then use the steps half-way down this page to add a rescue email address for potential future use : http://support.apple.com/kb/HT5312

  • How do I update the iCloud ID on my phone?  I changed my ID on my laptop, but my iphone still has "sign in to iCloud" with the wrong ID and I cant figure out how to change it.

    How do I update the iCloud ID on my phone?  I changed my ID on my laptop, but my iphone still has "sign in to iCloud" with the wrong ID and I cant figure out how to change it.

    I have same question

  • I have an ipod touch and i put cds on itunes on my pc , but i cant figure out how to put the music from the cds on my ipod .. can u help me ?

    i have an ipod touch and i put cds on itunes onmy computer , but i cant figure out how to put the music from the cds on my ipod touch can anyone help me?

    ok i select th e music from my music libary and go to file and click sync to my ipod and when it gets to step 3.. it says waiting for changes to be made.. yes the songs play on the itunes ..  and no it wasnt the same computer i used last time

  • My pages documents on my ipad wont sync to icloud. Some documents have had the upload icon on them for over a month. It was all working fine but now I cant figure out what is going on.

    MY pages documents on my ipad wont sync to icloud. Some of the documents have had the upload icon on them for over a month. It was all working fine a month or so ago but I cant figure out why it wont work now.

    Why start a new and very similar thread to your other one which you have not responded to (have you read the replies?)
    I suggest that no response is made to this duplicate thread. 

  • My mini died. bought one used from a friend... all of my songs and books are on my iPhone, and I cant figure out how to get them onto this new computer. this is frustrating. the things i really want are purchases I've made from itunes store... help

    My mini died. bought one used from a friend... all of my songs and books are on my iPhone, and I cant figure out how to get them onto this new computer. this is frustrating. the things i really want are purchases I've made from itunes store... help
    !!!!!

    Hey kevyg3,
    I was able to find an article that I believe will help you move your iTunes purchases from your iPhone over to your new computer:
    iTunes Store: Transferring purchases from your iOS device or iPod to a computer
    http://support.apple.com/kb/HT1848
    Hope this helps,
    David

  • My ipod touch is disabled, i installed the latest version of itunes, but cant figure out how to restore, can anyone help with this?

    My ipod touch is disabled, i installed the latest version of itunes, but cant figure out how to restore the ipod, can anyone help?

    If you run into the "another installation" message even after the reboot of the PC (which is an excellent idea by HTP ProXy), reregistering your Windows Installer Service is worth a try.
    First, launch a command prompt as an administrator. In your Start search, type cmd then right-click on the cmd that comes up and select "Run as administrator".
    At the command prompt:
    Type %windir%\system32\msiexec.exe /unregister and hit enter.
    Type %windir%\syswow64\msiexec.exe /unregister and hit enter.
    Type %windir%\system32\msiexec.exe /regserver and hit enter.
    Type %windir%\syswow64\msiexec.exe /regserver and hit enter.
    Restart the PC and try another reinstalll.

  • I purchased a song off of itunes and it said it downloaded successfuI but when i go to listen to that song it only plays 2 seconds of the song and i cant figure out how to download it again. What can i do.

    I purchased a song off of itunes and it said it downloaded successfully, but when i try to listen to that song it only plays 2 seconds of that song and i cant figure out how to download that song again. What can i do.

    Delete it, click here, and follow the instructions.
    (88741)

Maybe you are looking for

  • Cannot see Users folder in Final Cut Pro 10.1.1 (after OS 10.9.3 update)

    I have been working just fine with Final Cut Pro 10.1.1, on an hour long project with still and video content. Yesterday, I received a new OS update to 10.9.3 and afterward, when I went to import some content into my project, FCP does not see the Use

  • Browsers not showing same color from DW

    Folks, I have somelinks I am designing in photoshop and placing in a table in DW. I made the background color of the table the same as the grey in my link graphic by sampling the color with the eye dropper on the graphic. The greys from the table bac

  • Wrong PIN when initializing RSACryptoServiceProvider with smart card

    I get a "wrong PIN" exception initializing RSACryptoServiceProvider this way in Visual Studio C++ 2012: array<System::Byte>^ Sign(array<System::Byte>^ BinDataToSign, X509Certificate2^ Certificate, String^ ProviderName) //Set Password System::Security

  • Having trouble moving music onto iPhone

    So I've been seeing a lot of people having trouble with syncing music and whatever else onto their phone. However, I have not found the solution and I have the same problem. My biggest issue right now I'm am just trying to sync one song that I downlo

  • Strange sync issue

    Hi all. I'd appreciate some help. I am capturing live in Quicktime from two sources: a remote Canon HV40 (firewire) and our recording studio CD burner (optical digital). This seemed to work fine at first, although I had to resync the audio and video,