Hey Bruce Again wonderful information. I will try see if I can dig out some of the C++ code that I remember accessed the LDAP directory directly. If and when I...
Is there a way to set up a directory searcher and have it only return user accounts that are disabled? I really don't want to pull a list of all users just...
Try this as your Filter (&(objectCategory=person)(userAccountControl:1.2.840.113556.1.4.803:=2)) There is a really cool add in for Visual Studio called Active...
Is there way in AD User and Computers to show if the computer or server in online? Like Server Manager does? Also a way to query on last date the Computer or...
... I don't think that's possibly from AD - it's *not* designed to be a computer monitoring tool. ... Each user and computer object has a "lastLogon" property,...
Joseph, That solution worked great... I now have a nice datagrid with only the disabled users. I do have another quesiton though... I know that there is a...
Hi all, One of the lists main contributors Marc Scheuner (MVP for Active Directory for 2003), and I are going convert his very cool tool ADSIBROWSER ...
Carlos, Let me finish the page and I'll send up a copy of the code. We are going to use it to delete user account that have been disabled for over 30/60/90 ...
If you set a page size then the underlying ADSI object will take care of the paging between your client and server. All you have to do is MoveNext() via the...
I'm interested as well, but just being a beginner in c#, I don't know how much help I'll be. ... From: Joseph E Shook [mailto:jshook@...] Sent: Tuesday,...
Hello! I am interested, too. Thanks, Slavo. ________________________________ From: Joseph E Shook [mailto:jshook@...] Sent: Wednesday, June 04, 2003...
Hi all, Ok maybe it's late in the day or maybe its something someone has come across before. I have normal search code for a user in an Exchange 5.5...
Hi all, Ok maybe it's late in the day or maybe its something someone has come across before. I have normal search code for a user in an Exchange 5.5...
One last followup, I spoke to the MS engineer yesterday. The developers won't be able to change this behavior in ADSI, but the engineer has put a request in...
Hey All, History: I have a vb6 dll that I am trying to rewrite for .net It contains a bunch of ADSI functions for a COM+ object I use in ASP. I am upgrading...
Hi all, I am sorry to repost this someone answered this and I deleted it by mistake, the answer was allowing kerbose within internet explore. Could that...
This is because your authentication mode is NTLM. With NTLM you are only allowed a single "hop". The server is not allowed to access another backend server...
Davis, Joe
joe.davis@...
Jun 5, 2003 10:36 pm
543
... From: Davis, Joe Sent: Thursday, June 05, 2003 8:17 AM To: 'ADSIANDDirectoryServices@yahoogroups.com' Subject: RE: [ADSI-DirSrv] Unknown Error...
Davis, Joe
joe.davis@...
Jun 6, 2003 6:11 am
544
You don't. It looks for it in the bin directory. It's all portable. If the dll is needed from "anywhere" then look up "GlobalCache" in the MSDN. I say this as...
...concerning my previous post... If you create a DLL (COM) Class with .NET How do you use it on a regular ASP page. I understand now that it can be registered...
Maybe here is a better group that can help you deal with that classic asp issue : http://groups.yahoo.com/group/AspClassicAnyQuestionIsOk Hope that helps ...
(from memory) isn't it just set myObj = server.createobject("TheNamespace.TheObject") ??? cheers barry.b ... From: Carlos Magalhaes...
Beattie, Barry
bbeattie@...
Jun 6, 2003 8:15 am
548
Hey Joe, You are correct, the issue here is the delegation of authentication tokens between the IIS web server Windows 2000 and the Domain Controllers Windows ...
... You will need to make sure to set the "Register for COM Interop" to true - go to the Solution Explorer, pick your .NET DLL project, then go "Properties"....
Hi All A newbie question. I want to retrieve all groups a user belongs to. Group record: cn= ourGroup member : cn = user1,o=ourOrganization The search dn...