Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I connect to a local host using PrincipalContext?

Tags:

c#

.net

I know this has a simple solution, but I can't seem to make it work...

Using other Stack Overflow answers and Microsoft's Documentation, I know that PrincipalContext must be set up like this:

PrincipalContext pc = new PrincipalContext(ContextType.Domain, "YOURDOMAIN"); 

or also like this:

PrincipalContext domainContext = new PrincipalContext(ContextType.Domain,"YOURDOMAIN", null,ContextOptions.Negotiate | ContextOptions.SecureSocketLayer);  

My question is, what do I put for the "YOURDOMAIN" attribute if I am connecting to a local host?

Trying this ended in a PrincipalServerDownException:

PrincipalContext pc = new PrincipalContext(ContextType.Domain, "localhost:3600")
like image 804
AngeloS Avatar asked Dec 27 '22 23:12

AngeloS


1 Answers

Is this what you're looking for? :

   PrincipalContext pc = new PrincipalContext(ContextType.Machine, null);
like image 189
Chris Dickson Avatar answered Jan 15 '23 11:01

Chris Dickson