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...
Want to share photos of your group with the world? Add a group photo to Flickr.

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 1542 - 1571 of 4629   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1542
Anybody know how to fill these attributes? When creating a user account on the network (Windows 2003 domain) I cannot find the corresponding programmatic...
Bewley, Patrick J
pjbewley
Offline Send Email
Jan 1, 2004
5:36 pm
1543
I believe you are looking for the userPrincipalName property. ... From: Bewley, Patrick J [mailto:BewleyPJ@...] Sent: Wednesday, December 31, 2003...
Joseph E Shook
joseph_shook...
Offline Send Email
Jan 1, 2004
5:55 pm
1544
sAMAccountName usually works for the logon name, ... __________________________________ Do you Yahoo!? Find out what made the Top Yahoo! Searches of 2003 ...
wei huang
weihuangzhu
Offline Send Email
Jan 2, 2004
9:04 am
1545
First of all I would like to extend my seasons greetings to all of you, may 2004 be the year that all of your dreams come true. I would also like to thank each...
Carlos Magalhaes
carloshoshm
Offline Send Email
Jan 2, 2004
9:31 am
1546
I am teaching myself VB.net and writing a small app to create users in AD using LDAP and System.DirectoryServices. Unfortunately I have not been able to find...
airdrie_black
Offline Send Email
Jan 3, 2004
9:59 am
1547
... From: airdrie_black [mailto:airdrie_black@...] Sent: Friday, January 02, 2004 10:37 PM To: ADSIANDDirectoryServices@yahoogroups.com Subject:...
Joseph E Shook
joseph_shook...
Offline Send Email
Jan 3, 2004
4:17 pm
1548
I looked around and it appears that this info is stored in the userparameters property. Most places that I see it referenced in the Platform SDK indicate that...
Joseph E Shook
joseph_shook...
Offline Send Email
Jan 3, 2004
5:01 pm
1549
Hi all, I have created a c# console program in order to create a mailbox- enabled user account at the exchange server 2000. The program looks like this: using...
joryn01
Offline Send Email
Jan 5, 2004
10:00 am
1550
Folks, I've been working on my C# freeware ADSI Browser, and everything seemed to be going just fine, until I ran into this odd error..... Whenever I try to...
m_scheuner
Offline Send Email
Jan 5, 2004
1:25 pm
1551
The original problem is I am unable to simply create a GPO with more secure password settings (i.e Complex Passwords, Minimum Password Age, etc…) After...
gabriel_ybarra
Online Now Send Email
Jan 5, 2004
8:15 pm
1552
I was wondering if it is possible to create and environment variable from the 1st initial of the "First Name" and up to 7 letters of the "Last Name" as stated...
ellsjoker
Offline Send Email
Jan 5, 2004
8:16 pm
1553
I am using ADSI via C# to add a single user to an LDAP group, and I have no problem adding that single user and then setting its password. However, when I try...
jessicajelly2000
jessicajelly...
Offline Send Email
Jan 5, 2004
8:17 pm
1554
Carlos Many thanks for the reply - sorry for the delay in getting back to you, I was holidaying over the seasonal period ;-) To get back to the code......
draven_er
Offline Send Email
Jan 5, 2004
8:18 pm
1555
Hello Gabriel This is indeed interesting. Can you post all the attributes (names as you see it) and the values i.e. the current values and the values you want....
Carlos Magalhaes
carloshoshm
Offline Send Email
Jan 5, 2004
8:35 pm
1556
Hey Neil, Not a problem, ok its late so if i am not understanding you correctly just slap me with a trout :P You want to know how the LDAP path for the OU in...
Carlos Magalhaes
carloshoshm
Offline Send Email
Jan 5, 2004
8:57 pm
1557
The following code will discover two OUs on MyMailServer. Private Sub Command5_Click() Dim Container As IADsContainer Dim Entry As IADs Set Container =...
Bewley, Patrick J
pjbewley
Offline Send Email
Jan 5, 2004
10:28 pm
1558
do you mean like: username = left(firstname, 1) & left(lastname, 7)? ... From: ellsjoker [mailto:ellsjoker@...] Sent: Mon 05/01/04 12:52 To:...
Brendan Stephens
brendan_step...
Offline Send Email
Jan 5, 2004
10:34 pm
1559
1. Use the ADsPath property to navigate, this will ensure there are no mistakes. 2. Check your syntax... ie: LDAP://server:port/ou=container,dc=server,dc=com ...
Brendan Stephens
brendan_step...
Offline Send Email
Jan 5, 2004
10:47 pm
1560
Ok, I'm going to answer my own question This following worked: Set Container = GetObject("LDAP://MyMailServer/o=ExchangeServerOrganization/ou=MyOU") Question:...
Bewley, Patrick J
pjbewley
Offline Send Email
Jan 6, 2004
12:33 am
1561
Hi Patrick Well the "O" is your exchange server organization and in the code below it is the root of the tree that you where looping trough, the container only...
Carlos Magalhaes
carloshoshm
Offline Send Email
Jan 6, 2004
9:39 am
1562
Thanks for the thoughts. I guess I have a very specific problem that would "get around" the issues you mention below. The contacts I've added from LDAP...
misterbate5
Offline Send Email
Jan 6, 2004
9:55 am
1563
I can't comment on the error as I have not had this issue before. However, I am wondering if you can pinpoint it to where the problem occurs - .NET somewhere...
Ryan Dunn
dunn_rp
Offline Send Email
Jan 6, 2004
5:27 pm
1564
Thanks for the reply, Carlos. I'm happy with using DNs for LDAP paths, in general - and happy with using getobject to LDAP objects in general - it's more when...
draven_er
Offline Send Email
Jan 6, 2004
6:44 pm
1565
I am having the same problem with the old password staying in effect for several minutes after the password is changed. Another related problem I'm having is...
tkltechy
Offline Send Email
Jan 6, 2004
7:33 pm
1566
Carlos, thanks for the reply. The accounts were deleted with ADU&C. But we believe permissions were added programatically (by NetIQ) A major issue is that we...
steviebabes_uk2003
steviebabes_...
Offline Send Email
Jan 6, 2004
7:35 pm
1567
Ok, your problem is that you have changed the password on the Domain via code or they user has changed their password on their own but has not logged out and...
Joseph E Shook
joseph_shook...
Offline Send Email
Jan 6, 2004
8:08 pm
1568
We have a similar application that allows the user to change their password. The issue encompasses more than just the browser and becomes a real problem. When...
Ryan Dunn
dunn_rp
Offline Send Email
Jan 6, 2004
9:01 pm
1569
Excellent addition to my posting. I was going to mention this but didn't want my story to get complicated. I believe it needed to be stated though. Yes if a...
Joseph E Shook
joseph_shook...
Offline Send Email
Jan 6, 2004
10:29 pm
1570
Hi all, I have created a c# console program in order to create a mailbox- enabled user account at the exchange server 2000. The program looks like this: using...
joryn01
Offline Send Email
Jan 7, 2004
3:21 am
1571
Carlos, I want to retrieve AD User Records in my Web Page. I have used following code: But it gives exception on Line No. 6 while executing. Exception is:...
Nuzhat Parveen
nparveen@...
Send Email
Jan 7, 2004
8:43 am
Messages 1542 - 1571 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