All, Have a single instance of ADAM installed on an AD domain controller. The directory structure is very similiar to the AD structure. The ADAM instance is...
All, I have an application that was developed against AD that uses the samaccountname attribute quite a bit. We are trying to develop an ADAM instance to...
Sure, you can use ADAMSync that comes with SP1/R2 (Windows 2003 Server). Below is a link to Eric Fleischman's blog he is one of the ADAM guru's showing you how...
I have a web application that captures selected user data and save it to a SQL database. I need to use one of the data items to update Active Directory. I can...
People build web applications to update AD all the time. Typically you will use ADSI for doing this, but you would use System.DirectoryServices in ASP.NET. ...
I'm using ASP.Net 1.1. I'll try modifying the code used for the command line to use System.DirectoryServices. Thanks. Bob Filipiak A question not asked is a...
Here is a copy of the script that reads the file on the hard drive. The Command.Text string has ... in place of the actual values. ... Dim strUsername,...
I tried using System.DirectoryServices: Dim CommandText As String = _ "<LDAP://dc=...,dc=..,dc=....,dc=...>;(&(objectCategory=Person)(objectClass=user)" & _ ...
You aren't using the DirectorySearcher correctly. You need to instantiate it with a DirectoryEntry object that uses the path you want as a search root for its...
If we are not looking for any multivalued attribute associated with user then one idea would be go for ADSI linked server. Microsoft provides builtin SP to...
My organization does not require all Windows workstations to join the AD but is attempting to safeguard non-AD machines through periodic running services...
Hello Everyone, i would like to know if there is a way (adsi or an existing tool) that can pull user permissions and group memberships. i am planning a domain...
Install Certificate Server on your DC. Also, if your certificate's trust cannot be validated by the client, you will not be able to complete the ldap_bind. ......
If the DC can do LDAP over SSL, then your cert must be fine. If ADAM is running under a service account (and not local system like AD), it needs to be able to...
Thanks to everyone for the replies. Unfortunately due to time we ended up scrapping ADAM and starting over with AD. Installed Standalone CAs on each DC....
I´m trying to move a computer in the domain with the directoryentry.moveto function and i´m geeting this error: [COMException (0x80072032): An invalid dn...
It would be useful if you showed the arguments you used. :) Also, were you just trying to move the computer, or rename it as well as move it? Thanks, Joe K. ...
All of a sudden it disappeared any help and link is highly appriciated -Vivek _________________________________________________________________ All that you...
I´m only trying to move it to another OU. That's my code in VB .NET: Dim Machine As DirectoryEntry Dim search As DirectorySearcher Dim result As SearchResult ...
I can't see what exactly is wrong from the code you showed. Your code is kind of hard to follow because you are reusing variable names a lot, but can you print...
Can you write a simple console application (not a web app) that is just hardcoded to move this one computer to that OU (without doing all the searches and...
Good catch! The misspelling of the attribute would prevent it from getting loaded, but that would not prevent GetDirectoryEntry from working, as it goes off of...
About the intention of the program, is to move the new computers that are create in the Computer OU to a different OU, so it´s not just one computer and it´s...
Did you try my suggestion of trying to create a dead simple console app that just does the move with hard-coded paths so you could post that here? Like we...