Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

ADSIANDDirectoryServices · ADSI and System.DirectoryServices Q&A

The Yahoo! Groups Product Blog

Check it out!

Group Information

? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Messages

Advanced
Messages Help
Messages 4435 - 4465 of 4652   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
4435 tanmayee_nayak Send Email May 2, 2007
2:39 am
Hi all, I work with sharepoint Portal server 2003. We use the Active Directory user information to log in to a sharepoint site. I want to display the Password...
4436 Joe Kaplan
joekaplan2003 Send Email
May 3, 2007
3:58 am
We have a useful class from ch 10 in our book called DomainPolicy that may be of use for you to retrieve the password policy data for a domain. You can get...
4437 paul_judson Send Email May 5, 2007
12:31 am
I've found lots of information on ADSI providers but I was wondering if the low-level APIs that the providers sit on top of and actually comunicate with the AD...
4438 Joe Kaplan
joekaplan2003 Send Email
May 5, 2007
2:52 am
There are two ADSI providers that talk to AD: LDAP and WinNT. LDAP talks to AD via the LDAP protocol and essentially just uses the Windows LDAP API ...
4439 michaelbarber1957
michaelbarbe... Send Email
May 10, 2007
10:37 am
Hi, I'm writing a program using .NET Framework Express 2.0 (C#) from a WIN XP machine which successfully creates a specific list of Local Groups on a selected...
4440 Joe Kaplan
joekaplan2003 Send Email
May 11, 2007
2:18 pm
What happens if you put the SID of the local group directly in the DACL? You can create a SecurityIdentifier object instead of an NTAccount object as your...
4441 pmj_rit Send Email May 12, 2007
1:21 am
I know I haven't posted any answers here. I have done a quick search. AD is really not my area. I have to deal with as part of looking after an intranet. The...
4442 michaelbarber1957
michaelbarbe... Send Email
May 14, 2007
9:25 am
I have tried that, but to be honest it's not been tested. There are about 70 experts in the team looking after several thousand servers (don't know exactly how...
4443 Joe Kaplan
joekaplan2003 Send Email
May 14, 2007
2:28 pm
The idea here is that the SID would begin resolving to the name of the group rather quickly. The point of setting the ACL with the SID would just be to get...
4444 tarakvbhatt Send Email May 22, 2007
10:14 am
Hi All, Can anybody tell me "How to change the "manager" property of the Organization Tab for particular User" programatically. Thanks & Regards, Tarak....
4445 Ryan Dunn
dunn_rp Send Email
May 22, 2007
4:19 pm
IRC, you just set the 'manager&#39; attribute using the DN value of the manager object. Note, it must be the full DN - nothing else will work. ... [Non-text...
4446 forceten_ice Send Email May 29, 2007
10:57 am
Does anyone know where I could look for some sample code (in C) to connect to Active Directory using AD-specific or generic LDAP libraries from an MS-DOS...
4447 Yantis, Richard
yantran52 Send Email
May 30, 2007
8:37 pm
Am I correct that the only way to get/set mailbox quotas (Exchange Server 2003) from a .Net Framework 2.0 windows application is to use CDOEXM.DLL? And that...
4448 Joe Kaplan
joekaplan2003 Send Email
May 30, 2007
9:46 pm
That is the only supported mechanism, and yes, it sucks. However, the mailbox size limits are actually just attributes on the user object and can be set...
4449 Joe Kaplan
joekaplan2003 Send Email
May 30, 2007
9:47 pm
If you can use wldap32.dll in your app, I have no idea what to suggest for you. Why on earth would you be building such a thing? Joe K. ... From:...
4450 Vinod J Nair
vinodjnair_2000 Send Email
Jun 11, 2007
3:02 am
Hi, I am using AD DirSync in .Net2.0 using cookies and trying to retrieve all user from a particular domain. I am getting the following errors: 1. When I run...
4451 amal ali mohamed
amal_ali_moh... Send Email
Jun 12, 2007
12:01 pm
Dear Sir, I know what is the cause of your problems from my viewpoint: 1. Deadlock program can be happened when one user lock a resource and need to another...
4452 vinod vjn
vinodjnair_2000 Send Email
Jun 12, 2007
6:36 pm
Thanks Amal for your suggestion & help. But i am looking for more input in technical terms to fix these issues. ... [Non-text portions of this message have...
4453 Richard Kline
rakline01 Send Email
Jun 20, 2007
9:39 pm
Using straight VB.NET 2005 code (ASPX), is it possible to obtain a list of the SMTP addresses associated with an Exchange 2003 mailbox by using one of those...
4454 Greg Nims
gregnims Send Email
Jun 20, 2007
9:48 pm
we have a test instance of ADAM residing in a test domain. i am trying to bind to it with an id in our production domain. i am unable to do so in ldp. is...
4455 Ryan Dunn
dunn_rp Send Email
Jun 20, 2007
9:54 pm
It depends on what you mean. If you are using a proxy user or you are trying a bind redirect, there are two different answers I think. I am guessing you are...
4456 Joe Kaplan
joekaplan2003 Send Email
Jun 20, 2007
9:58 pm
It depends. Is there a trust between these two domains? When you use Windows auth for binding to ADAM with a Windows user account, the authentication is...
4457 Joe Kaplan
joekaplan2003 Send Email
Jun 20, 2007
10:05 pm
A mailbox is associated with an object that has a homeMDB. The addresses for that object are in the proxyAddresses attribute, so you can read that. The SMTP...
4458 Richard Kline
rakline01 Send Email
Jun 22, 2007
9:38 am
Thank you! It works like a charm. Except I'm only retrieving a maximum of four ProxyAddresses regardless of the actual numbe associated with the mailboxr. It...
4459 Richard Kline
rakline01 Send Email
Jun 22, 2007
10:15 am
I think that I see it now. The code is using the wrong count value in the line. For j = 0 To thisResult.Properties.Count Instead of a for loop, I should move...
4460 Joe Kaplan
joekaplan2003 Send Email
Jun 22, 2007
2:15 pm
You are using the number of attributes returned as your indexer into the number of attribute values for a specific attribute. That is not correct. I'd suggest...
4462 Richard Kline
rakline01 Send Email
Jun 22, 2007
2:49 pm
Thanks! As always, your help is greatly appreciated. ________________________________ From: ADSIANDDirectoryServices@yahoogroups.com ...
4463 Vinod J Nair
vinodjnair_2000 Send Email
Jun 22, 2007
7:26 pm
Posting my question again as I didn't receive any solution to these issues. ... <vinodjnair@...> wrote: Hi, I am using AD DirSync in .Net2.0 using cookies and...
4464 amal ali mohamed
amal_ali_moh... Send Email
Jun 24, 2007
1:04 pm
If you reach your goal in this aspect. Please, send to me how you implement or recover your problems vinod vjn <vinodjnair@...> wrote:...
4465 Vinod J Nair
vinodjnair_2000 Send Email
Jun 27, 2007
10:25 am
Hi, I am able to retrieve the samAccountName, ObjectGUID properties of AD users using the Search object. But I would like to know how can i retrieve...
Messages 4435 - 4465 of 4652   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

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