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...
Message search is now enhanced, find messages faster. Take it for a spin.

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 3852 - 3881 of 4629   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
3852
Well then maybe that explains what I was seeing yesterday. Network Service was coming up as the username. I will enable impersonation and see what I get. ...
Rick Holcomb
rickholc
Offline Send Email
Oct 1, 2005
2:13 pm
3853
I have a simple function responsible for determining if an end-user is a member of a particular AD Global Group. The script returns False even though the Group...
rapidbu
Offline Send Email
Oct 1, 2005
6:09 pm
3854
I have an ASP.Net application with a SQL 2000 backend I have been authenticating against an NT domain and we are switching to active directory. When we make...
Eva
prinleah101
Offline Send Email
Oct 3, 2005
10:11 am
3855
Please disregard the earlier request for help. I found the errors..... Eva __________________________________ Yahoo! Mail - PC Magazine Editors' Choice 2005 ...
Eva
prinleah101
Offline Send Email
Oct 3, 2005
10:15 am
3856
Dim src As DirectorySearcher = New DirectorySearcher("(& (objectCategory=Person)" + "(objectClass=user)(sAMAccountName=" + UserN + "))") src.SearchRoot = de ...
Jeff Lucal
charlie333111
Offline Send Email
Oct 3, 2005
5:32 pm
3857
When I try to change the password via the WinNT provider, I get the following error in .NET. "Cannot Create ActiveX component" Any ideas why this is?...
gocubbies2k
Offline Send Email
Oct 3, 2005
7:02 pm
3858
The IADsGroup persistent interface is also a wise choice for groups that might contain more than 1000 members in Win2K AD and 1500 members in W2K3 AD. For more...
ewilansky
Online Now Send Email
Oct 4, 2005
1:14 am
3859
Just out of curiosity, have you tried to back into this using IADsGroup to read group membership rather than using IADsUser to read information about the user?...
ewilansky
Online Now Send Email
Oct 4, 2005
3:57 pm
3860
This particular issue should have been solved in a later hotfix, but it is still good practice to keep in mind. ... -- Ryan Dunn MVP - ASP.NET <http://ASP.NET>...
Ryan Dunn
dunn_rp
Offline Send Email
Oct 4, 2005
4:46 pm
3861
Can you show us how the search root DirectoryEntry is constructed? That is the piece that establishes the security context. Joe K. ... From: "Jeff Lucal"...
Joe Kaplan
joekaplan2003
Offline Send Email
Oct 6, 2005
5:03 am
3862
Hi, I want to have all groups that a user is member of but i want to filter it by the OU where the groups are created. I have User1 memberof...
Filipe Clemente
filasclemente
Offline Send Email
Oct 6, 2005
6:32 pm
3863
... You would have to enumerate the "memberOf" attribute and look at the resulting group DN that you get back, in order to determine whether that group is in...
Marc Scheuner
m_scheuner
Offline Send Email
Oct 6, 2005
6:34 pm
3864
I need to promote a bunch of users from being local users to being domain users. As part of this process, I need to promote the settings on the dial-in tab of...
Michael B. Smith
swngdnz
Offline Send Email
Oct 6, 2005
8:25 pm
3865
Hi Michael, ... I don't think there's any magic way to "promote" those users. What you could do (in VBScript or preferably C# or any other .NET language) is...
Marc Scheuner
m_scheuner
Offline Send Email
Oct 10, 2005
10:40 am
3866
Right, I'd planned on iterating over them. Those attributes are present in the binary blob "parameters" attribute. Since they are unique per-user attributes,...
Michael B. Smith
swngdnz
Offline Send Email
Oct 10, 2005
11:08 am
3867
The DE isn't specifying any credentials. The DE is defined right below the public class. I let my app do a call out to the root of AD and grab any domain...
Jeff Lucal
charlie333111
Offline Send Email
Oct 10, 2005
5:12 pm
3868
That sounds like a Kerberos delegation problem then. If your web app uses IWA auth, then a double hop is required for the user's security context to flow from...
Joe Kaplan
joekaplan2003
Offline Send Email
Oct 10, 2005
8:27 pm
3869
Awhile Ago I said I would post some code here to help create an Active Directory component. I have decided to post what I have at the moment. It has been...
Paul J Baratelli
Paul.Baratelli@...
Send Email
Oct 11, 2005
8:04 am
3870
My user creation tool creates a user and stamps the "msNPAllowDialin" attribute to True before committing the creation. I've found that the user doesn't have...
Jeff Lucal
charlie333111
Offline Send Email
Oct 11, 2005
8:26 pm
3871
Yeah, it's not legal to modify msNPAllowDialin directly. Along with most of the other RAS and RADIUS attributes. There are a number of reasons for that, but...
Michael B. Smith
swngdnz
Offline Send Email
Oct 11, 2005
8:32 pm
3872
Another approach you might want to consider avoids the DirectorySearcher all together and gets the DN of the logged-on user in the user's context. Once you...
ewilansky
Online Now Send Email
Oct 11, 2005
9:37 pm
3873
Hi all Here Im getting an error while finding an user. i.e. whether the user is existing or not. the code I written is as follows Public Function...
vijaysaraswathi
Offline Send Email
Oct 11, 2005
10:59 pm
3874
Isn't he going to have the same problem here though? The issue was that he couldn't get a DirectoryEntry to bind properly due to Kerberos delegation issues....
Joe Kaplan
joekaplan2003
Offline Send Email
Oct 12, 2005
1:12 am
3875
... This is not a valid LDAP string - you're string should look something like LDAP://HSDDEVT/CN=Users,DC=YourCOmpany,DC=com The "DN=....." is not a valid LDAP...
Marc Scheuner
m_scheuner
Offline Send Email
Oct 12, 2005
5:24 am
3876
Hi marc thx for seeing ur reply. But Im not sure what value should I provide for DC. what if I just say "LDAP://HSDDEVT/CN=Users" will it work or not. Because...
vijaysaraswathi
Offline Send Email
Oct 12, 2005
6:38 am
3877
... Inspect the LDAP://RootDSE entry, and have a look at the "defaultNamingContext" entry - that should show you the DC= parts for your domain. ... No, it will...
Marc Scheuner
m_scheuner
Offline Send Email
Oct 12, 2005
8:47 am
3878
Hi Joe, In Jeff's original post he says that the application works fine for domain admins, but not for regular users. I've seen this DirectorySearcher failure...
ewilansky
Online Now Send Email
Oct 12, 2005
1:53 pm
3879
I hear what you are saying but I don't understand why a user account that is performing a search to find its own object in AD would have an issue. I suppose...
Joe Kaplan
joekaplan2003
Offline Send Email
Oct 12, 2005
2:20 pm
3880
Is there a way to do this using code and not a script? I just want to modify the properties of the directory object or the IadsUser. I just want to know how...
Jeff Lucal
charlie333111
Offline Send Email
Oct 12, 2005
2:44 pm
3881
hi marc, Now I mentioned like this Dim sUserPath As String = "LDAP://HSDDEVT/CN=Users,DC=US,DC=NM,DC=HSD" Dim oUser As New DirectoryEntry() Dim sUserFind As...
vijaysaraswathi
Offline Send Email
Oct 12, 2005
2:53 pm
Messages 3852 - 3881 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