Search the web
Sign In
New User? Sign Up
ADSIANDDirectoryServices · ADSI and System.DirectoryServices Q&A
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 3942 - 3971 of 4629   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
3942
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...
rmod009
Offline Send Email
Nov 1, 2005
4:25 pm
3943
... 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#,...
Marc Scheuner
m_scheuner
Offline Send Email
Nov 3, 2005
11:58 am
3944
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...
gaoming_fu
Offline Send Email
Nov 8, 2005
11:55 pm
3945
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...
Wizard Of OZ
prconklin
Online Now Send Email
Nov 14, 2005
8:39 pm
3946
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? ...
Mark Rae
markraeuk
Offline Send Email
Nov 15, 2005
11:41 am
3947
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...
Joe Kaplan
joekaplan2003
Offline Send Email
Nov 15, 2005
3:38 pm
3948
... <joe@j...> wrote: Joe, Thanks very much - I'll do a Google search to see if I can find some sample code. Ideally, I'd like simply to rewrite my...
Mark Rae
markraeuk
Offline Send Email
Nov 15, 2005
11:14 pm
3949
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...
vijaysaraswathi
Offline Send Email
Nov 17, 2005
4:43 pm
3950
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...
wei
weihuangzhu
Offline Send Email
Nov 18, 2005
8:17 pm
3951
... I don't know if you just made a typo in preparing this email to the list, but it should be a comma instead of a period after micrsoft....
Greg Nims
gregnims
Offline Send Email
Nov 18, 2005
8:26 pm
3952
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...
bahtiyar sen
bahtiyarsen82
Offline Send Email
Nov 18, 2005
9:20 pm
3953
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...
Stan
stanvsam
Offline Send Email
Nov 19, 2005
8:51 am
3954
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...
Ken Gross
magician144
Offline Send Email
Nov 19, 2005
11:24 am
3955
... 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...
Marc Scheuner
m_scheuner
Offline Send Email
Nov 19, 2005
9:48 pm
3956
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 & ",...
wei huang
weihuangzhu
Offline Send Email
Nov 20, 2005
4:07 am
3957
Hi, I am very new to asp.net, and needs help on how to display a certain result to a label control, Here is my code. string ldapPath =...
ryanx888
Offline Send Email
Nov 21, 2005
2:31 pm
3958
... might be able to do: label1.text = resEnt.Properties[sn].ToString();...
Greg Nims
gregnims
Offline Send Email
Nov 21, 2005
3:17 pm
3959
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...
ryanx888
Offline Send Email
Nov 21, 2005
7:31 pm
3960
You need to access the ResultPropertyValueCollection by using an index: label1.Text = reEnt.Properties["sn"][0].ToString(); ... -- Ryan Dunn MVP - ASP.NET...
Ryan Dunn
dunn_rp
Offline Send Email
Nov 21, 2005
8:28 pm
3961
Thank you very much Ryan, it worked. ... o f the...
ryanx888
Offline Send Email
Nov 22, 2005
3:43 am
3962
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...
Aaron Seet
valoryea
Offline Send Email
Nov 25, 2005
4:09 pm
3963
... 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...
Greg Nims
gregnims
Offline Send Email
Nov 25, 2005
4:55 pm
3964
Hi Aaron, ... See Ryan Dunn's discussion of how to use the "tokenGroups" attribute to do just this: ...
Marc Scheuner
m_scheuner
Offline Send Email
Nov 25, 2005
5:11 pm
3965
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,...
bty549256
Offline Send Email
Nov 26, 2005
8:28 am
3966
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...
Aaron Seet
valoryea
Offline Send Email
Nov 26, 2005
1:20 pm
3967
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...
Aaron Seet
valoryea
Offline Send Email
Nov 26, 2005
5:14 pm
3968
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...
Aaron Seet
valoryea
Offline Send Email
Nov 27, 2005
10:44 am
3969
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...
Marc Scheuner
m_scheuner
Offline Send Email
Nov 27, 2005
7:58 pm
3970
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...
Aaron Seet
valoryea
Offline Send Email
Nov 28, 2005
4:58 am
3971
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 ...
Aaron Seet
valoryea
Offline Send Email
Nov 28, 2005
6:44 am
Messages 3942 - 3971 of 4629   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help