Ajay
Ajay

Reputation: 1

How to configure windows authentication for multiple or cross domains in IIS. site type: Intranet

I have an Asp.net website for domain A users with Integrated Windows Authentication.

Now users from domain B need to access the website.

But Domain B users receive a pop-up window to input the authenticated information when they access the website

My question is:

How to configure the IIS or Windows Server to allow Domain B users to access the website without the pop-up windows for authentication, just like the users from Domain A.

Upvotes: 0

Views: 1302

Answers (1)

Gabriel Luci
Gabriel Luci

Reputation: 40978

There are two requirements:

  1. Domain A needs to trust Domain B, and
  2. On the users' computers, the website needs to be added to the Trusted Sites in the Windows Internet Options. This tells Chrome and Edge that they can automatically send the credentials of the logged in user. Firefox can do it too, but has its own setting for it.

Upvotes: 0

Related Questions