Yes, but with .NET, not script. Joe K. ... From: "Bill" <onebroncofan@...> To: <ADSIANDDirectoryServices@yahoogroups.com> Sent: Thursday, June 30, 2005...
Hello there I know that you have to be on an exchange server to be able to use "createmailbox" method. I received the error "The directory property cannot be...
Hi All, I would like to retrieve user properties from ad. I am really interested in few of them for now; one of them is the "Account is locked out" property...
I am creating distribution lists with my program by adding the group to the parent OU and then setting the sAMAccountName and groupType properties. I am then...
... From: Ryan Dunn To: ADSIANDDirectoryServices@yahoogroups.com Sent: Wednesday, July 06, 2005 12:01 AM Subject: Re: [ADSI-DirSrv] User Properties It might...
Hi, I want to know if ADSI work could wotk with Lotus notes to create email and other atributtes. Thank __________________________________________________ Do...
Hi friends, I have one problem. Now I am chatting with one person, that person how to catch my System IP Address its possible, they are using any software....
hi is there any script through which we can get the mail quota applied to a mail box in exchange 2000 server in active directory. Thanks in advance Sameer ...
Hello, I'm a newbie to ADSI with C#. I'm able to loop through user properties in an OU but when it display's the users objectsid it displays as System.Byte....
For 1.1 of the Fx, we need to use a p/invoke to properly read a SID. If you search for "ConvertSidToStringSid" on pinvoke.net you can find a number of examples...
Hi, Im creating users in AD from a sql database. If i create 2,3.. 10 users its ok. When i create 27.... 40 .. 50 users the following strange error message ...
One thing on this though. If you just want the SID in binary format, this will work: byte[] binSid = (byte[]) entry.Properties["objectSid"].Value; From there,...
Hi Nicole, ... That would be 0x80072020 in hex - and it says "An Operations Error Occured" - not very helpful. The point is though: you're in an ASP...
... I am not 100% sure I understand what you're asking - someone is chatting with you (how? Through ICQ?) and gets at your IP address? I don't see how this is...
Hi Everybody , I have a problem with my DC In event viewer of system part. There are multiple accounts with name cifs/Rad01 of type DS_SERVICE_PRINCIPAL_NAME....
Try doing this.... IADsUser usr = objDS.NativeObject; // may need to type cast and call usr.ChnagePassword(...) You need to add reference to ActiveDS.dll... ...
ChangePassword and SetPassword are distinctly different and cannot be interchanged. The behavior between using Reflection or strongly typing the call makes no...
sorry I missed it . To call changepassword(), credentials used should be either administrator or account operator. Vivek Kubhojkar ... From: Ryan Dunn To:...
Hi, # if you are trying to setpassword of newly created object you must call Setinfo or CommitChnages before SetPassword # SetPassword will not work from ASP...
My guess is that your code is actually using the NetUserSetInfo path in the code to set the user's password and is hitting some bizarre RPC error as a result. ...
Hello, I am just startig work on .NET Role based security and want my VB.NET methods to use declarative role based security. Conisdering that both my...
Hope this link will help you http://msdn.microsoft.com/library/default.asp?url=/library/en-us/secmod/html/secmod81.asp Click on Directory Services -Vivek...