Hello, I try to write a VB .Net script who will allow me to read the content of the "Administrators" group on a remote computer. Can I use ADSI. All computer...
... If you want to read the local admin group on a computer, you need to use the WinNT provider. You'd have to try to do something like this (this is in C#,...
Hi All, I downlowned AD to ADAM Synchronizer and tried to get users from my test domain to my ADAM instance. I have trouble for the following command: ADAMSync...
QUESTION IS: DO YOU HAVE CODE TO SEND EMAILS FROM A REMOTE SERVER TO AN EXCHANGE SERVER? Or can you suggest an application that does this programatically? I...
Hi, Is there any way in ADSI of recording a user's assistant / secretary so that the information is accessible through that AD user's Properties collection? ...
You need to use the LDAP provider when working with AD if you want to have access to the full AD schema. The WinNT provider is generally there for local...
Hi to all when I run following code in VB 6.0 Im getting error while setting password and the error message is "The network path was not found" Dim oDS As...
Hi I am trying to do a simple search, the scirpt is from microsoft scripting center, my testing is I have AD in 4 server they replicating each other, it works...
for example: wert@... strADsPath ="CN=wert, OU=trew, DC=com" ... I don't know if you just made a typo in preparing this email to the list, but it should...
Dear Friends.. I have a server win 2003 with ISA server 2003 running on it. And also hav 20 client machines running Win Xp proffesional on it. How can i block...
Just close the ports that it uses, or block the server that it uses. If you restrict access, then it won't run. If you need specifics, then you might want to...
... Why even a search, if you ALREADY have the full LDAP path for the AD object?? Or is this 'ADCHILD3' supposed to be an OU really? What is it that you're...
Hi Marc My script is a component to check if a user is in the group or not, on that script, I use WinNT path, something like WinNt://Microsoft/" & strUser & ",...
Thanks for replying, i tried label1.text = resEnt.Properties[sn].ToString(); but this is the text i am getting from the label control instead o f the actual...
You need to access the ResultPropertyValueCollection by using an index: label1.Text = reEnt.Properties["sn"][0].ToString(); ... -- Ryan Dunn MVP - ASP.NET...
I am trying to find a way to list all user accounts that are members of a given group, _including_ those in nested groups. I didn't find anything useful in my...
... Here is a .net app (C#) I wrote to recurse thru a nested group and flag all group members. in the main class, i give a root group name, and pass this...
I can't find any examples that show you how to modify values within 'LIST' types in IIS with .NET I want to change the custom errors of a virdir. For example,...
Hi Greg is there a reason to looping every property entry instead of direct indexing entry.Properties["objectClass"]? I also do not know what the adding and...
That is fulfilling the exact opposite of what I want to do, as mentioned previously. I wish to, in one fell swoop (read: single LDAP query), list all Users in...
Taking a cue from recommendation of DirectoryEntry, I decided to run a little experiment with that class instead; see what it is capable of. The tutorial logic...
Hi Aaron, ... What is the "cn=Engineers" - what kind of object? Is it a group as I presume? Members of a group ARE NOT CHILDREN OF THAT GROUP! They're MEMBERS...
Hi Marc, What type of objects would qualify as a child object for a DirectoryEntry? cn=Engineers is the top-level group. I had modified the code yesterday to...
It seems I need to be mindful (or careful) of the provider I interface with. The MSDN article I was referencing, "Walkthrough: Viewing Local Directory ...