Hi, I'am having some troubles with Impersonation + Integrated Security (Hope Ryan could help me again this time! :)) This is the scenario: 1. AD Server 2....
Does anyone have experience with connecting to TLS encryption on OpenLDAP via VB.NET? I tried the AuthenticationTypes.SecureSocketsLayer bit and that didn't...
It should work. ADSI just uses the standard Schannel APIs under the hood to do SSL/TLS, so if Windows can negotiate a connection to your server, then ADSI...
I don't think you can do this. IE is really nice about this kind of stuff and pops up the familiar "certificate warning" dialog that allows you to proceed....
Eva, If I understand you correctly, your problem is here: all of these applications are actually set up under the "Default Web Site". Establishing (or not) SSL...
To be clear, you are impersonating a specific user account that has access to SQL Server on your IIS box, right? You actually should not need delegation for...
Hello Marc, Hope you don't mind asking ... but I'M really stuck with this.... (I search the Internet throughout!!!!) I don't know what I'm doing wrong. Perhaps...
I'm not familiar with Delphi, but assuming AD: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/adschema/adschema/a_pwdlastset.asp If this...
I need to access Active Directory information in an Active Directory forest versus a single domain. To accomplish this I am changing my bindings to use "GC://"...
I am writing an application that will allow users to be added from a web browser and am having a strange problem. The application impersonates a domain admin....
The question though is why are you binding to the GC for what reason did you choose to bind to the GC. The GC also only has a Partial Attribute Set that has...
Hey Maria, Strange the code you have: newuser.Invoke("SetPassword", strPassword) should not even work it should be: newuser.Invoke("SetPassword", New Object()...
Hello... Please, can you tell me, what's the benefit of service life time ticket or ticket granting ticket (TGT) in Windows Server 2003?! Is it usefull for...
Hello Carlos, Thanks for your response. In my research I have read that using the GC is more efficient than using LDAP because with GC there is only one search...
I have a VB.net web app that manages users, home directories, passwords, etc... I use the subroutine below pulled from a Q article on how to set permissions...
I really just want to add "the new user, Group1, and Group2" to have full rights to this newly created folder. If I clear the acls...won't I have problems...
What you can do is checking every ACE to see if it is "Domain User" and delete this ACE... I have no problem clearing alle the permissions and setting new...
Really appreciate the help. I guess what is difficult for me is ... is there a list somewhere for the attributes?....I'm new to these descriptors. I looked...
From the ADAM technical reference (http://www.microsoft.com/downloads/details.aspx?familyid=96c660f7- d932-4f59-852c-2844b343f3e0&displaylang=en), when a user...
Hi Bill, I just tried this with LDP.exe and discovered that you cannot do SID binds on the GC. I don't know why, but the comment in the extended error said ...
Hello... I need to know how to remove a user from a group or organizational unit and how to move a user from a group to another group. Using ADSI and C#. NET. ...
Remember that managing objects in the directory hierarchy and managing groups are different. Groups are independent of the directory hierarchy. A user can...
Hi Gaoming, It works basically like this: For objects in ADAM (ADAM users and bindProxy objects), you use LDAP simple bind for the bind method and use the ADAM...
Can it be possible to bind to AD with an User's samAccountName as the parameter, if yes, how ? ... -- Nikhil Google is Great ! [Non-text portions of this...
Thanks a lot... Both of the two sites were helpeful in my design. But can you tell me, how to check wether the account is disabled or not for a user using ADSI...
You should also be able to use the plain sAMAccountName with AD users although I can't remember if I have tried it. Joe K. ... From: "Nikhil Mulley"...
I have tried it, it does work. For example: Dim MyEntry as new DirectoryEntry("LDAP://MydomainIsCool.Com", CarlosM, *******, authtype.secure) However you need...