Integrated Windows Authentication not working in IE onlyInternet Explorer 8 causing login prompt connecting to Sharepoint 2007 (from separate workstation)Weird IIS with Windows Authentication + IE problemAuthentication of users via IE when using “host header value”IIS Authentication Not WorkingIIS6 intranet site using integrated authentication fails to load when accessed externallyWindows Authentication Website Asking for CredentialsIIS6 site using integrated authentication (NTLM) fails when accessed with Win7 / IE8Windows Integrated authentication with member groupsIIS issues challenge on unprotected directoryWindows Authentication with IIS and mobile devices

Unable to deploy metadata from Partner Developer scratch org because of extra fields

Modeling an IP Address

meaning of に in 本当に?

Roll the carpet

Client team has low performances and low technical skills: we always fix their work and now they stop collaborate with us. How to solve?

Are the number of citations and number of published articles the most important criteria for a tenure promotion?

Did Shadowfax go to Valinor?

What does the "remote control" for a QF-4 look like?

Why doesn't H₄O²⁺ exist?

Could an aircraft fly or hover using only jets of compressed air?

Is it possible to run Internet Explorer on OS X El Capitan?

When a company launches a new product do they "come out" with a new product or do they "come up" with a new product?

Replacing matching entries in one column of a file by another column from a different file

Perform and show arithmetic with LuaLaTeX

Why can't I see bouncing of switch on oscilloscope screen?

How can I prevent hyper evolved versions of regular creatures from wiping out their cousins?

Is it legal for company to use my work email to pretend I still work there?

Why is consensus so controversial in Britain?

Is it inappropriate for a student to attend their mentor's dissertation defense?

What's the output of a record needle playing an out-of-speed record

Which country benefited the most from UN Security Council vetoes?

Filter any system log file by date or date range

Why do I get two different answers for this counting problem?

Does object always see its latest internal state irrespective of thread?



Integrated Windows Authentication not working in IE only


Internet Explorer 8 causing login prompt connecting to Sharepoint 2007 (from separate workstation)Weird IIS with Windows Authentication + IE problemAuthentication of users via IE when using “host header value”IIS Authentication Not WorkingIIS6 intranet site using integrated authentication fails to load when accessed externallyWindows Authentication Website Asking for CredentialsIIS6 site using integrated authentication (NTLM) fails when accessed with Win7 / IE8Windows Integrated authentication with member groupsIIS issues challenge on unprotected directoryWindows Authentication with IIS and mobile devices






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








6















In my site I have one folder that does not allow anonymous access. It is set up to use Integrated Windows Authentication as it is on an AD domain. The login works fine in Firefox, Chrome, even Safari, but not IE8. Has anyone encountered this before? I can't seem to find anyone else with a similar issue, except for where the login fails in all browsers of course.










share|improve this question






















  • Sorry for too many questions, but want to understand a bit more. What is the version of IIS? Is it a .net application and the folder is it on the same server or on another box?

    – Vivek Kumbhar
    Sep 23 '10 at 0:51












  • are you trying to get IE to login automatically, or can you not login at all?

    – Eric C. Singer
    Jan 23 '12 at 0:01

















6















In my site I have one folder that does not allow anonymous access. It is set up to use Integrated Windows Authentication as it is on an AD domain. The login works fine in Firefox, Chrome, even Safari, but not IE8. Has anyone encountered this before? I can't seem to find anyone else with a similar issue, except for where the login fails in all browsers of course.










share|improve this question






















  • Sorry for too many questions, but want to understand a bit more. What is the version of IIS? Is it a .net application and the folder is it on the same server or on another box?

    – Vivek Kumbhar
    Sep 23 '10 at 0:51












  • are you trying to get IE to login automatically, or can you not login at all?

    – Eric C. Singer
    Jan 23 '12 at 0:01













6












6








6








In my site I have one folder that does not allow anonymous access. It is set up to use Integrated Windows Authentication as it is on an AD domain. The login works fine in Firefox, Chrome, even Safari, but not IE8. Has anyone encountered this before? I can't seem to find anyone else with a similar issue, except for where the login fails in all browsers of course.










share|improve this question














In my site I have one folder that does not allow anonymous access. It is set up to use Integrated Windows Authentication as it is on an AD domain. The login works fine in Firefox, Chrome, even Safari, but not IE8. Has anyone encountered this before? I can't seem to find anyone else with a similar issue, except for where the login fails in all browsers of course.







iis login internet-explorer-8 integrated-authentication






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Jun 16 '10 at 15:27









CoreyTCoreyT

133114




133114












  • Sorry for too many questions, but want to understand a bit more. What is the version of IIS? Is it a .net application and the folder is it on the same server or on another box?

    – Vivek Kumbhar
    Sep 23 '10 at 0:51












  • are you trying to get IE to login automatically, or can you not login at all?

    – Eric C. Singer
    Jan 23 '12 at 0:01

















  • Sorry for too many questions, but want to understand a bit more. What is the version of IIS? Is it a .net application and the folder is it on the same server or on another box?

    – Vivek Kumbhar
    Sep 23 '10 at 0:51












  • are you trying to get IE to login automatically, or can you not login at all?

    – Eric C. Singer
    Jan 23 '12 at 0:01
















Sorry for too many questions, but want to understand a bit more. What is the version of IIS? Is it a .net application and the folder is it on the same server or on another box?

– Vivek Kumbhar
Sep 23 '10 at 0:51






Sorry for too many questions, but want to understand a bit more. What is the version of IIS? Is it a .net application and the folder is it on the same server or on another box?

– Vivek Kumbhar
Sep 23 '10 at 0:51














are you trying to get IE to login automatically, or can you not login at all?

– Eric C. Singer
Jan 23 '12 at 0:01





are you trying to get IE to login automatically, or can you not login at all?

– Eric C. Singer
Jan 23 '12 at 0:01










5 Answers
5






active

oldest

votes


















4














Chances are this is due to a broken SPN somewhere.



I suspect that the non-Microsoft browsers don't do Kerberos (or at least, don't do it in the same way as IE does).



This means that IE might be attempting a Kerberos logon, where the others might well be using NTLM.



If an SPN exists for http/www.example.com or host/www.example.com, and it isn't owned by the account that runs the Application Pool, that'd be a good reason for this type of break.



On Windows 2008 or later:
SETSPN -X will check for duplicates; SETSPN -Q http/www.example.com will look for owners of that specific SPN.



Fix your SPN problem, and you'll probably fix IE logons being broken.



Other guidance might tell you to disable Integrated Windows Authentication in IE Advanced properties; that's a boneheaded move which breaks Kerberos for everything and covers up the problem.



More here.






share|improve this answer


















  • 1





    I believe this answer is correct. My site using Windows Auth worked fine for IE and Chrome. Then I changed the site's Application Pool identity and following that authentication stopped working in IE -- though it worked in Chrome. IE would present the user/pass dialog, I would put in the appropriate credentials but login would fail. The fix for me (I believe) was disabling the Enable Integrated Windows Authentication option in IE settings.

    – kingdango
    Mar 29 '12 at 20:16











  • SPN = Service Principal Name

    – Tom Ferguson
    Nov 24 '17 at 16:34


















2














This was mentioned in passing in one of the comments, but I wanted to call it out specifically in case anybody else finds it useful. I was having this same problem and I was able to resolve it by changing the App Pool Identity. This is found under "Advanced Settings" for the given App Pool.



Someone had set this value to "AppPoolIdentity" but I had to set it back to "NetworkService" to fix the problem.



(I tried to post an image, but I need more reputation apparently. If someone upvotes this answer then I can add the image.)






share|improve this answer






























    1














    The broken SPN answer appears to be correct. This means that you may need to point out the problem to your IT/IS department if you want to get Kerberos set up correctly.



    I do not recommend the "disable the Enable Integrated Windows Authentication" solution, because it requires normal users to go in and click something that they may not even have permission to change depending on how administrators have configured IE.



    In the event that the Kerberos setup isn't getting fixed anytime soon, the more flexible solution is to go to the app in IIS, click Authentication, highlight the Windows Authentication line (which should be marked enabled, with everything else disabled), and then click the "Providers..." link on the right. There will likely be two entries, "Negotiate" and "NTLM", with Negotiate on top. Move NTLM to the top. While this forces your site to use NTLM, which is a security risk, but it's the only option if Kerberos is unavailable.






    share|improve this answer






























      0














      Are you accessing the site by a fully qualified domain name? For instance, an intranet site might be accessible by "intranet" but IE8 will not think this is in your AD domain because it's "domain part" doesn't match. You'd have to use "intranet.example.com" where your AD domain is "example.com".






      share|improve this answer























      • Out intranet is just a subfolder in the main site, so just www.example.com/intranet. I've tried putting the domain in the login box in front of the username, but that didn't make a difference.

        – CoreyT
        Jun 16 '10 at 17:24


















      0














      Chrome prompted once for my password and succeeded.



      IE prompted 3x for my password and I get a 401 Unauthorized.



      My issue ended up being that both IE and Chrome prompted me for credentials for two different servers. The reason for the prompting for credentials is likely due to a password change last week.



      Chrome prompted me with my domain account. MyDomainMyUserId



      But IE prompted me for ThisServerUrl.comMyUserId
      (which of course failed because that user doesn't exist on the server but even worse -- the URL has nothing to do with the server name -- M$ what are you thinking???)



      Hopefully this will help the next poor sap with the same issue.






      share|improve this answer








      New contributor




      D. Kermott is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.




















        Your Answer








        StackExchange.ready(function()
        var channelOptions =
        tags: "".split(" "),
        id: "2"
        ;
        initTagRenderer("".split(" "), "".split(" "), channelOptions);

        StackExchange.using("externalEditor", function()
        // Have to fire editor after snippets, if snippets enabled
        if (StackExchange.settings.snippets.snippetsEnabled)
        StackExchange.using("snippets", function()
        createEditor();
        );

        else
        createEditor();

        );

        function createEditor()
        StackExchange.prepareEditor(
        heartbeatType: 'answer',
        autoActivateHeartbeat: false,
        convertImagesToLinks: true,
        noModals: true,
        showLowRepImageUploadWarning: true,
        reputationToPostImages: 10,
        bindNavPrevention: true,
        postfix: "",
        imageUploader:
        brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
        contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
        allowUrls: true
        ,
        onDemand: true,
        discardSelector: ".discard-answer"
        ,immediatelyShowMarkdownHelp:true
        );



        );













        draft saved

        draft discarded


















        StackExchange.ready(
        function ()
        StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f151753%2fintegrated-windows-authentication-not-working-in-ie-only%23new-answer', 'question_page');

        );

        Post as a guest















        Required, but never shown

























        5 Answers
        5






        active

        oldest

        votes








        5 Answers
        5






        active

        oldest

        votes









        active

        oldest

        votes






        active

        oldest

        votes









        4














        Chances are this is due to a broken SPN somewhere.



        I suspect that the non-Microsoft browsers don't do Kerberos (or at least, don't do it in the same way as IE does).



        This means that IE might be attempting a Kerberos logon, where the others might well be using NTLM.



        If an SPN exists for http/www.example.com or host/www.example.com, and it isn't owned by the account that runs the Application Pool, that'd be a good reason for this type of break.



        On Windows 2008 or later:
        SETSPN -X will check for duplicates; SETSPN -Q http/www.example.com will look for owners of that specific SPN.



        Fix your SPN problem, and you'll probably fix IE logons being broken.



        Other guidance might tell you to disable Integrated Windows Authentication in IE Advanced properties; that's a boneheaded move which breaks Kerberos for everything and covers up the problem.



        More here.






        share|improve this answer


















        • 1





          I believe this answer is correct. My site using Windows Auth worked fine for IE and Chrome. Then I changed the site's Application Pool identity and following that authentication stopped working in IE -- though it worked in Chrome. IE would present the user/pass dialog, I would put in the appropriate credentials but login would fail. The fix for me (I believe) was disabling the Enable Integrated Windows Authentication option in IE settings.

          – kingdango
          Mar 29 '12 at 20:16











        • SPN = Service Principal Name

          – Tom Ferguson
          Nov 24 '17 at 16:34















        4














        Chances are this is due to a broken SPN somewhere.



        I suspect that the non-Microsoft browsers don't do Kerberos (or at least, don't do it in the same way as IE does).



        This means that IE might be attempting a Kerberos logon, where the others might well be using NTLM.



        If an SPN exists for http/www.example.com or host/www.example.com, and it isn't owned by the account that runs the Application Pool, that'd be a good reason for this type of break.



        On Windows 2008 or later:
        SETSPN -X will check for duplicates; SETSPN -Q http/www.example.com will look for owners of that specific SPN.



        Fix your SPN problem, and you'll probably fix IE logons being broken.



        Other guidance might tell you to disable Integrated Windows Authentication in IE Advanced properties; that's a boneheaded move which breaks Kerberos for everything and covers up the problem.



        More here.






        share|improve this answer


















        • 1





          I believe this answer is correct. My site using Windows Auth worked fine for IE and Chrome. Then I changed the site's Application Pool identity and following that authentication stopped working in IE -- though it worked in Chrome. IE would present the user/pass dialog, I would put in the appropriate credentials but login would fail. The fix for me (I believe) was disabling the Enable Integrated Windows Authentication option in IE settings.

          – kingdango
          Mar 29 '12 at 20:16











        • SPN = Service Principal Name

          – Tom Ferguson
          Nov 24 '17 at 16:34













        4












        4








        4







        Chances are this is due to a broken SPN somewhere.



        I suspect that the non-Microsoft browsers don't do Kerberos (or at least, don't do it in the same way as IE does).



        This means that IE might be attempting a Kerberos logon, where the others might well be using NTLM.



        If an SPN exists for http/www.example.com or host/www.example.com, and it isn't owned by the account that runs the Application Pool, that'd be a good reason for this type of break.



        On Windows 2008 or later:
        SETSPN -X will check for duplicates; SETSPN -Q http/www.example.com will look for owners of that specific SPN.



        Fix your SPN problem, and you'll probably fix IE logons being broken.



        Other guidance might tell you to disable Integrated Windows Authentication in IE Advanced properties; that's a boneheaded move which breaks Kerberos for everything and covers up the problem.



        More here.






        share|improve this answer













        Chances are this is due to a broken SPN somewhere.



        I suspect that the non-Microsoft browsers don't do Kerberos (or at least, don't do it in the same way as IE does).



        This means that IE might be attempting a Kerberos logon, where the others might well be using NTLM.



        If an SPN exists for http/www.example.com or host/www.example.com, and it isn't owned by the account that runs the Application Pool, that'd be a good reason for this type of break.



        On Windows 2008 or later:
        SETSPN -X will check for duplicates; SETSPN -Q http/www.example.com will look for owners of that specific SPN.



        Fix your SPN problem, and you'll probably fix IE logons being broken.



        Other guidance might tell you to disable Integrated Windows Authentication in IE Advanced properties; that's a boneheaded move which breaks Kerberos for everything and covers up the problem.



        More here.







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Jan 23 '12 at 0:00









        TristanKTristanK

        8,29812131




        8,29812131







        • 1





          I believe this answer is correct. My site using Windows Auth worked fine for IE and Chrome. Then I changed the site's Application Pool identity and following that authentication stopped working in IE -- though it worked in Chrome. IE would present the user/pass dialog, I would put in the appropriate credentials but login would fail. The fix for me (I believe) was disabling the Enable Integrated Windows Authentication option in IE settings.

          – kingdango
          Mar 29 '12 at 20:16











        • SPN = Service Principal Name

          – Tom Ferguson
          Nov 24 '17 at 16:34












        • 1





          I believe this answer is correct. My site using Windows Auth worked fine for IE and Chrome. Then I changed the site's Application Pool identity and following that authentication stopped working in IE -- though it worked in Chrome. IE would present the user/pass dialog, I would put in the appropriate credentials but login would fail. The fix for me (I believe) was disabling the Enable Integrated Windows Authentication option in IE settings.

          – kingdango
          Mar 29 '12 at 20:16











        • SPN = Service Principal Name

          – Tom Ferguson
          Nov 24 '17 at 16:34







        1




        1





        I believe this answer is correct. My site using Windows Auth worked fine for IE and Chrome. Then I changed the site's Application Pool identity and following that authentication stopped working in IE -- though it worked in Chrome. IE would present the user/pass dialog, I would put in the appropriate credentials but login would fail. The fix for me (I believe) was disabling the Enable Integrated Windows Authentication option in IE settings.

        – kingdango
        Mar 29 '12 at 20:16





        I believe this answer is correct. My site using Windows Auth worked fine for IE and Chrome. Then I changed the site's Application Pool identity and following that authentication stopped working in IE -- though it worked in Chrome. IE would present the user/pass dialog, I would put in the appropriate credentials but login would fail. The fix for me (I believe) was disabling the Enable Integrated Windows Authentication option in IE settings.

        – kingdango
        Mar 29 '12 at 20:16













        SPN = Service Principal Name

        – Tom Ferguson
        Nov 24 '17 at 16:34





        SPN = Service Principal Name

        – Tom Ferguson
        Nov 24 '17 at 16:34













        2














        This was mentioned in passing in one of the comments, but I wanted to call it out specifically in case anybody else finds it useful. I was having this same problem and I was able to resolve it by changing the App Pool Identity. This is found under "Advanced Settings" for the given App Pool.



        Someone had set this value to "AppPoolIdentity" but I had to set it back to "NetworkService" to fix the problem.



        (I tried to post an image, but I need more reputation apparently. If someone upvotes this answer then I can add the image.)






        share|improve this answer



























          2














          This was mentioned in passing in one of the comments, but I wanted to call it out specifically in case anybody else finds it useful. I was having this same problem and I was able to resolve it by changing the App Pool Identity. This is found under "Advanced Settings" for the given App Pool.



          Someone had set this value to "AppPoolIdentity" but I had to set it back to "NetworkService" to fix the problem.



          (I tried to post an image, but I need more reputation apparently. If someone upvotes this answer then I can add the image.)






          share|improve this answer

























            2












            2








            2







            This was mentioned in passing in one of the comments, but I wanted to call it out specifically in case anybody else finds it useful. I was having this same problem and I was able to resolve it by changing the App Pool Identity. This is found under "Advanced Settings" for the given App Pool.



            Someone had set this value to "AppPoolIdentity" but I had to set it back to "NetworkService" to fix the problem.



            (I tried to post an image, but I need more reputation apparently. If someone upvotes this answer then I can add the image.)






            share|improve this answer













            This was mentioned in passing in one of the comments, but I wanted to call it out specifically in case anybody else finds it useful. I was having this same problem and I was able to resolve it by changing the App Pool Identity. This is found under "Advanced Settings" for the given App Pool.



            Someone had set this value to "AppPoolIdentity" but I had to set it back to "NetworkService" to fix the problem.



            (I tried to post an image, but I need more reputation apparently. If someone upvotes this answer then I can add the image.)







            share|improve this answer












            share|improve this answer



            share|improve this answer










            answered Jul 28 '15 at 16:00









            Andrew YoungAndrew Young

            1212




            1212





















                1














                The broken SPN answer appears to be correct. This means that you may need to point out the problem to your IT/IS department if you want to get Kerberos set up correctly.



                I do not recommend the "disable the Enable Integrated Windows Authentication" solution, because it requires normal users to go in and click something that they may not even have permission to change depending on how administrators have configured IE.



                In the event that the Kerberos setup isn't getting fixed anytime soon, the more flexible solution is to go to the app in IIS, click Authentication, highlight the Windows Authentication line (which should be marked enabled, with everything else disabled), and then click the "Providers..." link on the right. There will likely be two entries, "Negotiate" and "NTLM", with Negotiate on top. Move NTLM to the top. While this forces your site to use NTLM, which is a security risk, but it's the only option if Kerberos is unavailable.






                share|improve this answer



























                  1














                  The broken SPN answer appears to be correct. This means that you may need to point out the problem to your IT/IS department if you want to get Kerberos set up correctly.



                  I do not recommend the "disable the Enable Integrated Windows Authentication" solution, because it requires normal users to go in and click something that they may not even have permission to change depending on how administrators have configured IE.



                  In the event that the Kerberos setup isn't getting fixed anytime soon, the more flexible solution is to go to the app in IIS, click Authentication, highlight the Windows Authentication line (which should be marked enabled, with everything else disabled), and then click the "Providers..." link on the right. There will likely be two entries, "Negotiate" and "NTLM", with Negotiate on top. Move NTLM to the top. While this forces your site to use NTLM, which is a security risk, but it's the only option if Kerberos is unavailable.






                  share|improve this answer

























                    1












                    1








                    1







                    The broken SPN answer appears to be correct. This means that you may need to point out the problem to your IT/IS department if you want to get Kerberos set up correctly.



                    I do not recommend the "disable the Enable Integrated Windows Authentication" solution, because it requires normal users to go in and click something that they may not even have permission to change depending on how administrators have configured IE.



                    In the event that the Kerberos setup isn't getting fixed anytime soon, the more flexible solution is to go to the app in IIS, click Authentication, highlight the Windows Authentication line (which should be marked enabled, with everything else disabled), and then click the "Providers..." link on the right. There will likely be two entries, "Negotiate" and "NTLM", with Negotiate on top. Move NTLM to the top. While this forces your site to use NTLM, which is a security risk, but it's the only option if Kerberos is unavailable.






                    share|improve this answer













                    The broken SPN answer appears to be correct. This means that you may need to point out the problem to your IT/IS department if you want to get Kerberos set up correctly.



                    I do not recommend the "disable the Enable Integrated Windows Authentication" solution, because it requires normal users to go in and click something that they may not even have permission to change depending on how administrators have configured IE.



                    In the event that the Kerberos setup isn't getting fixed anytime soon, the more flexible solution is to go to the app in IIS, click Authentication, highlight the Windows Authentication line (which should be marked enabled, with everything else disabled), and then click the "Providers..." link on the right. There will likely be two entries, "Negotiate" and "NTLM", with Negotiate on top. Move NTLM to the top. While this forces your site to use NTLM, which is a security risk, but it's the only option if Kerberos is unavailable.







                    share|improve this answer












                    share|improve this answer



                    share|improve this answer










                    answered Apr 23 '13 at 15:18









                    JamesJames

                    1111




                    1111





















                        0














                        Are you accessing the site by a fully qualified domain name? For instance, an intranet site might be accessible by "intranet" but IE8 will not think this is in your AD domain because it's "domain part" doesn't match. You'd have to use "intranet.example.com" where your AD domain is "example.com".






                        share|improve this answer























                        • Out intranet is just a subfolder in the main site, so just www.example.com/intranet. I've tried putting the domain in the login box in front of the username, but that didn't make a difference.

                          – CoreyT
                          Jun 16 '10 at 17:24















                        0














                        Are you accessing the site by a fully qualified domain name? For instance, an intranet site might be accessible by "intranet" but IE8 will not think this is in your AD domain because it's "domain part" doesn't match. You'd have to use "intranet.example.com" where your AD domain is "example.com".






                        share|improve this answer























                        • Out intranet is just a subfolder in the main site, so just www.example.com/intranet. I've tried putting the domain in the login box in front of the username, but that didn't make a difference.

                          – CoreyT
                          Jun 16 '10 at 17:24













                        0












                        0








                        0







                        Are you accessing the site by a fully qualified domain name? For instance, an intranet site might be accessible by "intranet" but IE8 will not think this is in your AD domain because it's "domain part" doesn't match. You'd have to use "intranet.example.com" where your AD domain is "example.com".






                        share|improve this answer













                        Are you accessing the site by a fully qualified domain name? For instance, an intranet site might be accessible by "intranet" but IE8 will not think this is in your AD domain because it's "domain part" doesn't match. You'd have to use "intranet.example.com" where your AD domain is "example.com".







                        share|improve this answer












                        share|improve this answer



                        share|improve this answer










                        answered Jun 16 '10 at 15:59









                        Chris SChris S

                        73.8k10107202




                        73.8k10107202












                        • Out intranet is just a subfolder in the main site, so just www.example.com/intranet. I've tried putting the domain in the login box in front of the username, but that didn't make a difference.

                          – CoreyT
                          Jun 16 '10 at 17:24

















                        • Out intranet is just a subfolder in the main site, so just www.example.com/intranet. I've tried putting the domain in the login box in front of the username, but that didn't make a difference.

                          – CoreyT
                          Jun 16 '10 at 17:24
















                        Out intranet is just a subfolder in the main site, so just www.example.com/intranet. I've tried putting the domain in the login box in front of the username, but that didn't make a difference.

                        – CoreyT
                        Jun 16 '10 at 17:24





                        Out intranet is just a subfolder in the main site, so just www.example.com/intranet. I've tried putting the domain in the login box in front of the username, but that didn't make a difference.

                        – CoreyT
                        Jun 16 '10 at 17:24











                        0














                        Chrome prompted once for my password and succeeded.



                        IE prompted 3x for my password and I get a 401 Unauthorized.



                        My issue ended up being that both IE and Chrome prompted me for credentials for two different servers. The reason for the prompting for credentials is likely due to a password change last week.



                        Chrome prompted me with my domain account. MyDomainMyUserId



                        But IE prompted me for ThisServerUrl.comMyUserId
                        (which of course failed because that user doesn't exist on the server but even worse -- the URL has nothing to do with the server name -- M$ what are you thinking???)



                        Hopefully this will help the next poor sap with the same issue.






                        share|improve this answer








                        New contributor




                        D. Kermott is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                        Check out our Code of Conduct.
























                          0














                          Chrome prompted once for my password and succeeded.



                          IE prompted 3x for my password and I get a 401 Unauthorized.



                          My issue ended up being that both IE and Chrome prompted me for credentials for two different servers. The reason for the prompting for credentials is likely due to a password change last week.



                          Chrome prompted me with my domain account. MyDomainMyUserId



                          But IE prompted me for ThisServerUrl.comMyUserId
                          (which of course failed because that user doesn't exist on the server but even worse -- the URL has nothing to do with the server name -- M$ what are you thinking???)



                          Hopefully this will help the next poor sap with the same issue.






                          share|improve this answer








                          New contributor




                          D. Kermott is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                          Check out our Code of Conduct.






















                            0












                            0








                            0







                            Chrome prompted once for my password and succeeded.



                            IE prompted 3x for my password and I get a 401 Unauthorized.



                            My issue ended up being that both IE and Chrome prompted me for credentials for two different servers. The reason for the prompting for credentials is likely due to a password change last week.



                            Chrome prompted me with my domain account. MyDomainMyUserId



                            But IE prompted me for ThisServerUrl.comMyUserId
                            (which of course failed because that user doesn't exist on the server but even worse -- the URL has nothing to do with the server name -- M$ what are you thinking???)



                            Hopefully this will help the next poor sap with the same issue.






                            share|improve this answer








                            New contributor




                            D. Kermott is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                            Check out our Code of Conduct.










                            Chrome prompted once for my password and succeeded.



                            IE prompted 3x for my password and I get a 401 Unauthorized.



                            My issue ended up being that both IE and Chrome prompted me for credentials for two different servers. The reason for the prompting for credentials is likely due to a password change last week.



                            Chrome prompted me with my domain account. MyDomainMyUserId



                            But IE prompted me for ThisServerUrl.comMyUserId
                            (which of course failed because that user doesn't exist on the server but even worse -- the URL has nothing to do with the server name -- M$ what are you thinking???)



                            Hopefully this will help the next poor sap with the same issue.







                            share|improve this answer








                            New contributor




                            D. Kermott is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                            Check out our Code of Conduct.









                            share|improve this answer



                            share|improve this answer






                            New contributor




                            D. Kermott is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                            Check out our Code of Conduct.









                            answered Apr 2 at 20:49









                            D. KermottD. Kermott

                            1012




                            1012




                            New contributor




                            D. Kermott is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                            Check out our Code of Conduct.





                            New contributor





                            D. Kermott is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                            Check out our Code of Conduct.






                            D. Kermott is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                            Check out our Code of Conduct.



























                                draft saved

                                draft discarded
















































                                Thanks for contributing an answer to Server Fault!


                                • Please be sure to answer the question. Provide details and share your research!

                                But avoid


                                • Asking for help, clarification, or responding to other answers.

                                • Making statements based on opinion; back them up with references or personal experience.

                                To learn more, see our tips on writing great answers.




                                draft saved


                                draft discarded














                                StackExchange.ready(
                                function ()
                                StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f151753%2fintegrated-windows-authentication-not-working-in-ie-only%23new-answer', 'question_page');

                                );

                                Post as a guest















                                Required, but never shown





















































                                Required, but never shown














                                Required, but never shown












                                Required, but never shown







                                Required, but never shown

































                                Required, but never shown














                                Required, but never shown












                                Required, but never shown







                                Required, but never shown







                                Popular posts from this blog

                                How to write a 12-bar blues melodyI-IV-V blues progressionHow to play the bridges in a standard blues progressionHow does Gdim7 fit in C# minor?question on a certain chord progressionMusicology of Melody12 bar blues, spread rhythm: alternative to 6th chord to avoid finger stretchChord progressions/ Root key/ MelodiesHow to put chords (POP-EDM) under a given lead vocal melody (starting from a good knowledge in music theory)Are there “rules” for improvising with the minor pentatonic scale over 12-bar shuffle?Confusion about blues scale and chords

                                What if the end-user didn't have the required library?What is setup.py?What is a clean, pythonic way to have multiple constructors in Python?What does Ruby have that Python doesn't, and vice versa?What is the reason for having '//' in Python?How do I create a namespace package in Python?How to package shared objects that python modules depend on?setuptools vs. distutils: why is distutils still a thing?Navigation in Windows 10 vs code not going to virtualenv library when the same library is installed at user levelPython create package for local usePackaging a project that uses multiple python versionsWhy is permission denied on pip install except for when “--user” is included at end of command?

                                Why did Thanos need his ship to help him in the battle scene?Which actor plays Thanos in the Avengers mid-credits scene?Are there economic implications portrayed in comics where the buildings and cities are ruined almost daily?Old X-Men comic where team travels to alien world with a ring-like sun that needs recharging?Why does Ego need help sleeping?Is there an objective answer to who “the strongest Avenger” is?How did Banner get unstuck?Why did Thanos get hit?How did Thanos (or anyone) know the Infinity Stones would give him this power?Did Thanos leave Eitri alive for his after-sales service?In Avengers 1, why does Thanos need Loki?