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 4518 - 4547 of 4629   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
4518
Hi les, There are a few tools and options that can help you here (logon/off scripts etc). But this data is not natively stored in AD as Marc mentioned. Limit...
Matthew Holland
hollmat1
Offline Send Email
Dec 2, 2007
9:47 pm
4519
Hi Shaun, From an app I wrote a year or so back; Medium - must contain min 7 characters, one numeric digit, one special character High - must contain Mixed...
Matthew Holland
hollmat1
Offline Send Email
Dec 2, 2007
9:47 pm
4520
Hello Shaun, Although this is not exactly what you asked, it might still be a basic enough and provide you a good solution to doing the work yourself. It's a...
Baydon Rowe
baydonrowe
Offline Send Email
Dec 2, 2007
9:47 pm
4521
I have a client with two AD domains. One is "Intranet" and the other is "SecureIntranet". There is a one way trust set up so that users logging in to the...
myfrogid
Offline Send Email
Dec 2, 2007
9:50 pm
4522
Can you explain the domain setup and the delegation setup in more detail? I assume these domains are in a separate forest? I'm not positive, but I think you...
Joe Kaplan
joekaplan2003
Offline Send Email
Dec 3, 2007
12:57 am
4523
Yes, the domains are in two separate forests. I spent some time on the phone with the client this morning and they are unwilling to set up a two way trust for...
myfrogid
Offline Send Email
Dec 3, 2007
5:41 pm
4524
Hi Joe, One of the cases I have is that I am fetching all of the users and all of the groups the users are associated with in an application. This supports an...
mneale1
Offline Send Email
Dec 4, 2007
6:13 pm
4525
Hello, Was actually referred to your group for questions about a vbs file I converted over to asp which runs a LDAP query for various user info fields. I am...
Jeremy Patrick
admin2
Offline Send Email
Dec 15, 2007
1:55 pm
4526
You are missing some 'set's in your code. Set the stuff in red below. Anything that isn't a simple variable needs a 'set' instead of just an assignment...
Michael B. Smith
swngdnz
Offline Send Email
Dec 15, 2007
2:12 pm
4527
So I pull these workstation lastlogon dates from the domain controllers (thank you, Joe and Ryan, for The Book) and 95% plus report valid dates. That's fine! ...
Richard Kline
rakline01
Offline Send Email
Jan 7, 2008
11:32 pm
4528
That is a all-zeroes timestamp (i.e., the "beginning of time"). Regards, Michael B. Smith MCSE/Exchange MVP http://TheEssentialExchange.com From:...
Michael B. Smith
swngdnz
Offline Send Email
Jan 7, 2008
11:46 pm
4529
Hi guys, My company is currently migrating servers from Win2k to Win2k3. However, we encountered a problem wherein a line from our ADSI code, which works...
ken_pogi
Offline Send Email
Jan 8, 2008
7:49 pm
4530
The below works on my end on 2003, so I don't think your code is the issue. Dim user As IADsUser user = GetObject("WinNT://servername/" + txtUN.Text + ",user")...
Andrzej Raczynski
araczynski
Offline Send Email
Jan 8, 2008
7:56 pm
4531
I've tried to set the Virtual Folder in IIS to have Anonymous Access and it still errors out. How do i know if i need to do some impersonation in my code?...
Ken Manuel
ken_pogi
Offline Send Email
Jan 9, 2008
8:56 am
4532
The article you reference is probably the much more secure way of doing it, in that it limits the impersonation to the actual calls that require the security...
Andrzej Raczynski
araczynski
Offline Send Email
Jan 9, 2008
2:37 pm
4533
Thanks a lot. I'll try it asap. Andrzej Raczynski <aer2@...> wrote: The article you reference is probably the much more secure way of doing it, ...
Ken Manuel
ken_pogi
Offline Send Email
Jan 10, 2008
2:09 am
4534
Simple Script running on Windows Server 2003. Error it returns is UserAccountInfo.vbs(12, 2) Provider: Table does not exist. Call DisabledAccounts Sub...
Charles Carroll
charlesmarkc...
Offline Send Email
Jan 13, 2008
10:49 pm
4535
My guess would be that you have the domain specified incorrectly. The sample works fine in my environment with that single change. Regards, Michael B. Smith ...
Michael B. Smith
swngdnz
Offline Send Email
Jan 14, 2008
2:18 am
4536
Thanks. Further research shows that basically the script assumes ADSI Dir Services are installed, and they are not on my server. The WinServer I have on my...
Charles Carroll
charlesmarkc...
Offline Send Email
Jan 17, 2008
7:02 pm
4537
Critical point, that you aren't in an A/D environment. You need to look into using the WinNT: provider instead of the LDAP: provider. You can get the same...
Michael B. Smith
swngdnz
Offline Send Email
Jan 17, 2008
8:04 pm
4538
Dear All, I have tried to access the Active Directory user details throught C# console application. But i got the error as "Error authentication user. The...
rajaprakash radhakris...
rraja_prakash
Offline Send Email
Jan 17, 2008
10:03 pm
4539
Dear All, I have tried to connect the Active directory and add a user in AD. I have got the error like "Error authenticating user.The specified domain either...
rajaprakash radhakris...
rraja_prakash
Offline Send Email
Jan 17, 2008
10:03 pm
4540
You'll get this error if the thread the code is executing under is not a domain user account. That is because you are using a serverless binding path and...
Joe Kaplan
joekaplan2003
Offline Send Email
Jan 18, 2008
12:39 am
4541
Hi Joe, I have used the path "LDAP://adsso. madnn.ac. nr/OU=TEST, DC=adsso, DC=madnn, DC=ac,DC= nr" Still i'm getting error like "Error authentication...
rajaprakash radhakris...
rraja_prakash
Offline Send Email
Jan 18, 2008
12:57 am
4542
If supplying the DNS name of the domain in your path makes the "domain could not be contacted" error go away, then that means you'll need to be aware when your...
Joe Kaplan
joekaplan2003
Offline Send Email
Jan 18, 2008
3:45 am
4543
Hi Raja, After reading Joe's recent comments below about the username format, and at the risk of pointing out something obvious... ... container = new ...
Baydon Rowe
baydonrowe
Offline Send Email
Jan 23, 2008
12:22 pm
4544
That's a good catch. :) I program so much more often in VB than in C# (corporate IT standard where I work) that I almost always forget to add my @ signs on...
Joe Kaplan
joekaplan2003
Offline Send Email
Jan 23, 2008
6:27 pm
4545
Hai Baydon and Joe, Thanks. I'll check it. RAJA... ... From: Joe Kaplan <joe@...> To: ADSIANDDirectoryServices@yahoogroups.com Sent: Thursday,...
rajaprakash radhakris...
rraja_prakash
Offline Send Email
Jan 24, 2008
3:35 am
4546
Dear All, I've tried to change password of user in Active directory using the below code. But it throws error like "System.UnauthorizedAccessException and...
rajaprakash radhakris...
rraja_prakash
Offline Send Email
Jan 24, 2008
6:00 am
4547
Kindly let me know following questions What are the requirement for Active Directory Client. How an client PC retrieve the GPO setting from Active Directory...
renu_icfai.1986
Offline Send Email
Jan 24, 2008
7:38 am
Messages 4518 - 4547 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