1

I am using VS2005 C# and SQL Server 2005.

I am currently using user authentication of the option : From the internet, therefore I have a list of created users and roles.

However, I would like to change my authentication to using ActiveDirectory, therefore I presume I would need to use the authentication option : From a local network.

But after I selected to authenticate from the local network, I am unable to add or manage users anymore.

May I know what are the steps that is required for me to change from my current authentication type to the use of Windows ActiveDirectory?

Any guides are greatly appreciated

4
  • Why not let IIS do the heavy lifting for you? Change your Website/Application authentication to Windows Authentication. Commented Jan 10, 2012 at 3:03
  • @M.Babcock May I know where do I change my Website/Application authentication? Thanks Commented Jan 10, 2012 at 3:22
  • Which version of IIS are you running? Commented Jan 10, 2012 at 3:23
  • @M.Babcock I tried searching for the IIS ver. in my pc but I can't seem to locate it somehow. It is possible that I may not have IIS installed in my pc Commented Jan 10, 2012 at 3:46

1 Answer 1

2

You can't add or manage users when you move to Active Directory. They have to be managed from the Active Directory Users and Computers MMC snap-in in the Domain Controller. Your web server talks to AD for authentication, it doesn't manage AD.

(that's not strictly true, you can write code to manage users, but it's going to be quite a bit of work, and it's just easier to do it from AD).

Sign up to request clarification or add additional context in comments.

1 Comment

My objective is to retrieve all users in the AD and list them in my webpage foe user management for my web application. However I am having some trouble logging in using Windows Authentication atm

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.