Tagged Questions
DirectoryEntry is a .Net class that encapsulates a node or object in the Active Directory Domain Services hierarchy.
8
votes
3answers
392 views
how to iterate over non-English file names in PHP
I have a directory which contains several files, many of which has non-english name. I am using PHP in Windows 7.
I want to list the filename and their content using PHP.
Currently I am using ...
5
votes
4answers
1k views
How to provide DirectoryEntry.Exists with credentials?
This morning I discovered a nice method (DirectoryEntry.Exists), that should be able to check whether an Active Directory object exists on the server. So I tried with a simple:
if ...
5
votes
4answers
3k views
Best way to quickly determine whether a user account is a member of an AD group?
I currently have some code that pulls down a list of users in a group and then iterates through that group to determine if a given account exists, but it seems like there ought to be a more concise ...
4
votes
2answers
1k views
How to change System.DirectoryEntry “uSNChanged” attribute value to an Int64
I'm trying to get the Int64 value of a Directory Services object's "uSNChanged" value. Unfortunately, it is always coming back as a COM object of some kind. I've tried using casting to Int64, calling ...
3
votes
1answer
108 views
ASP.Net (IIS 7.5) Querying Active Directory without User Credentials
I have multiple web applications that I've built for our intranet. I wanted to allow users to not worry about logging in, so these apps pull the currently logged on user when they hit the site. I used ...
3
votes
1answer
646 views
Force local user to change password at next login with C#
I'm writing a function for a web app in ASP.NET where the client logs into the server machine, which is Windows authenticated against the local users on the server. The function I am writing resets ...
3
votes
3answers
1k views
How to know if my DirectoryEntry is really connected to my LDAP directory?
I'm connecting to a LDAP directory in C#, so I've used the DirectoryEntry class.
When you do the "new DirectoryEntry" with address, login, and password it is supposed to connect to the LDAP ...
2
votes
1answer
22 views
Impersonation and DirectoryEntry
I am impersonating a user account successfully, but I am not able to use the impersonated account to bind to AD and pull down a DirectoryEntry.
The below code outputs:
Before impersonation I am: ...
2
votes
2answers
134 views
c# DirectoryEntry InvokeSet HomeDirectory and HomeDrive, errors
I'm trying to modify the Profiles / Home Directory / Home Drive setting for each AD user in a specified OU,
I have below some very basic code that should achieve this feat but is instead throwing ...
2
votes
1answer
183 views
Why does enumerating DirectoryEntry children only return 20 results on a WinNT domain? C#
I'm currently using the following code to find computers in a given WinNT domain, since DirectorySearcher is not supported on WinNT domains;
protected void ScanDomain(string domainName, bool ...
2
votes
3answers
278 views
Active Directory Is User Deactivated Code Snippet Needed?
Can some post the way to know if a particular user is a deactivated user in the windows ad ?
2
votes
1answer
85 views
Local active directory access and management for development?
In an application we are developpment, we are accessing Active Directory users and groups using the .Net DirectoryEntry and DirectorySearcher classes. Managing the test groups and users during ...
2
votes
11answers
192 views
Whats the name of the “.” and “..” entries in a directory listing?
I need a name for them both together. Do they have one?
I want to build a strip"DOT_AND_DOTDOT"() function that gets rid of them ...
2
votes
1answer
4k views
Reading ldap group member from c#
I have this code to connect to Active Directory and get all the groups that exist, it works and returns all the groups in results :
DirectoryEntry dirEnt = new DirectoryEntry();
using ...
1
vote
1answer
30 views
Passing empty strings or nulls to DirectoryEntry constructor
Noticed a strange thing today. I have some code like this in a project I'm working on:
var directoryEntry =new DirectoryEntry(
ConfigurationManager.AppSettings["path"],
...
1
vote
1answer
68 views
How to add NT AUTHORITY\IUSR to Administrators group
I want to add the IUSR account to that administrators group in my winforms application. The code below fails because it cant find a user for "NT AUTHORITY\IUSR":
DirectoryEntry AD = new ...
1
vote
0answers
62 views
How to force LDAP to use a secondary local IP Address in .NET?
I need to access a remote LDAP server behind a firewall (using C#/.NET) for user authentication.
The firewall at the remote site is set to allow a specific IP address, but it is not the primary IP ...
1
vote
1answer
144 views
Getting users from an Active Directory group
I have been banging my head for hours trying to figure out why this wont' work. I found an example of getting a list of users from an AD group but I can't get it to work. Here is what I've been trying ...
1
vote
1answer
520 views
Getting user account names fails for 64bit Windows 7
My C# winform application fails to get the (local machine's) user account names when installed on a 64bit Windows 7 machine. It works correctly on 32bit Windows 7, 64bit VIsta, 32 bit Vista and XP.
...
1
vote
2answers
535 views
How can I check if a user has write rights in Active Directory using C#?
In my .NET 2.0 C# applcation I need to determine if a user (with password) has ability to modify (write) option in Active Directory. I hope there is a way using DirectoryEntry without creating and ...
1
vote
1answer
301 views
Get windows group members along with their domain names
I have a windows group called "windgrp" it has three members in it:
Administrators
testDomain.Administrator
user1
I have this code to display the members present in a group:
using (DirectoryEntry ...
1
vote
1answer
471 views
LDAP: How to add a new user to a group inside an OU
I have some code using DirectoryEntry to manipulate the local Active Directory via LDAP. Currently I find a specific OU, add a user to it, update the properties of the user and then commit all ...
1
vote
1answer
263 views
How to add a new Windows user to the Users group by default
I have a piece of code that creates a Windows user. Everything is fine and the user is indeed created. However, when I try to pinvoke LoadUserProfile, the operation fails, because the user is not in ...
1
vote
1answer
185 views
How to programmatically RESUME IIS website?
I'm using the following code to start website when it is stopped.
DirectoryEntry DE = new DirectoryEntry(string.Format("IIS://localhost/W3SVC/{0}", siteID));
if ((Int32)DE.InvokeGet("ServerState") != ...
1
vote
1answer
151 views
Do I need to replace localhost in the IIS://localhost/MimeMap when reading the Mimemap
I'm reading out the mime types from IIS's MimeMap using the command
_mimeTypes = new Dictionary<string, string>();
//load from iis store.
DirectoryEntry Path = new ...
1
vote
2answers
530 views
Active Directory login - DirectoryEntry inconsistent exception
I need to validate the LDAP user by checking if there exists such a user name in the specified domain. For this I am using this code -
DirectoryEntry entry = new DirectoryEntry("LDAP://" + ...
1
vote
2answers
720 views
How to get a list of all domains?
I'm trying to get all domains that are available in the Windows Login dialog (in the Domain dropdown).
I've tried the following code but it only returns the domain I am logged into. Am I missing ...
1
vote
2answers
375 views
DirectoryEntry Timeout
I am having an issue with the DirectoryEntry object where it's taking a long time trying to connect to to a dead AD server and eventually failing. Is it possible to set a timeout so that if its not ...
1
vote
2answers
2k views
LDAP Invalid DN Syntax
string path = "LDAP://192.168.0.20/CN=users,DC=company,DC=ltm,DC=dom";
DirectoryEntry dir = new DirectoryEntry(path, admin, pass, AuthenticationTypes.ServerBind);
object value = ...
0
votes
1answer
55 views
which port(s) are used by DirectoryEntry?
My goal is to get the list of web site names from remote server. But I'm getting the exception:
The RPC server is unavailable.
Here is the code:
public List<string> GetWebSites(string ...
0
votes
2answers
46 views
exception while trying to connect to Active Directory
As a project for my company I am trying to query two ADs with asp.net c#. A local one and a remote one.
The local one didn't give me any trouble, connected, queried and every thing is working great.
...
0
votes
1answer
249 views
How to set AccountExpires in VB.NET via a AD DirectoryEntry
I needed to set the accountExpires property in the AD DirectoryEntry couldn't find a simple answer.
Found some information;
...
0
votes
0answers
99 views
Get Virtual Directory's Folder in IIS6
I'm trying to write a custom action for a Wix installer for an ASP.NET MVC app in IIS6. I'd like to setup wildcard mapping so my routes work and I also want to remove the wildcard mapping from my ...
0
votes
2answers
284 views
DirectoryEntry.Children.Remove throws “unspecified error”
I have a little code to delete a security group from Active Directory, but when run, I get a COMException with the message "Unspecified error".
Here is the code:
public void DeleteGroup(Model.Asset ...
0
votes
1answer
79 views
Given a user's SID, how can I get the AD DirectoryEntry?
I have the user's SID as byte[] within windowsPrincipal.getIdentity().getSid(). How can I get an active directory entry (DirectoryEntry) from the SID?
0
votes
2answers
400 views
How to use the objectGUID get a DirectoryEntry?
I know ,we can get a DirectoryEntry like this:
string conPath = "LDAP://10.0.0.6/DC=wds,DC=gaga,DC=com";
string conUser = "administrator";
string conPwd = "Iampassword";
DirectoryEntry de = new ...
0
votes
0answers
192 views
Error when using System.Directoryservices on 2008 R2 under a non-administrator account
I have a program that is using system.directoryservices and the directorysearcher.
On 2003 R2 this works as any user account, and only lists what they have rights to see.
On 2008 R2, however, it ...
0
votes
2answers
267 views
Windows - Local User Management
I am trying to implement a script/utility that renames a user, sets a default password, and then will prompt the user to change their password on their initial logon in Windows Server 2003. I am able ...
0
votes
1answer
436 views
Creating virtual directories in sub directories in IIS 6.0 (Programmically)
I am attempting to create virtual directories in IIS 6.0 programmically and having problems checking if a virtual directory exists if the virtual directory is in a nested folder.
So if I have a ...
0
votes
2answers
189 views
Is there a way to lock up a directory with Java?
My app creates a directory(file folder) on C:/ drive, since I don't want to expose all the data in it, and I don't want to encrypt all files in it, I wonder if there is a way to lock the folder up, so ...
0
votes
1answer
169 views
Forcing DirectoryEntry to Unbind an LDAP Connection
I'm coding a C# application trying to bind an LDAP server via DirectoryServices.DirectoryEntry. There are several DirectoryEntry objects accessing to the server. I saw that all of these objects use ...
0
votes
2answers
480 views
Verify if password is correct
i need to verify if the password is correct for a user.
i have this code:
private bool checkOldPasswordValid(string password, string username)
{
using (DirectoryEntry entry = new ...
0
votes
3answers
331 views
When you set a web directory property “AuthNTLM” using the DirectoryEntry object, what IIS setting are you actually changing?
I'm in task of migrating our product's installer from InstallShield to WiX.
To deploy web applications, the previous developers used Custom Actions (written in C#) in InstallShield. In Wix, this is ...
0
votes
1answer
207 views
How to list available ADSI (Active Directory Service Interfaces) service providers?
How can I list available ADSI (Active Directory Service Interfaces) service providers in C#?
0
votes
2answers
432 views
Administrative Limit Exceeded During C# LDAP Search
I am trying to do a LDAP Search however I keep getting the following error:
Unhandled Exception: System.Runtime.InteropServices.COMException (0x80072024): T
he administrative limit for this request ...
0
votes
1answer
173 views
finding out if user used for DirectoryEntry connection is an administrator
I have an existing DirectoryEntry connection and I want to check if the user that was used for the creation of this DirectoryEntry belongs to a specific group.
anyone knows how to achieve this?
...
0
votes
3answers
602 views
C# - is there a way to get the local path of the Default FTP site?
Is there a way to get the local path of the Default FTP site (in IIS) programmatically?
Like C:\program files\ftproot, shown below:
I'd imagine it would be something like:
DirectoryEntry ftproot ...
0
votes
3answers
336 views
Creating folders using DirectoryEntry
I am writing an ASP.NET (C#) application to create users for my domain. It also has to create folders and shares on a separate file server. I have so far been able to accomplish my task using
...
0
votes
1answer
1k views
Work with DirectoryEntry not on a Domain, set user password never expire
Hello i try to put the user password check to never expire. When i create the user, the check is always uncheck. I try many twist to execute that but noting work.
There is my code.
DirectoryEntry ...
0
votes
3answers
1k views
C# DirectoryEntry Error?
I have a Web setup project. In the setup I have an input field where the user can insert a connectionstring. When I run the setup I get this error:
Error 1001. Unknown error (0x8000x5000)
To track ...