0
votes
1answer
36 views
Starting application pools with WMI\ADSI (C#) hangs immediately after reboot
Hi,
I have encountered a strange situation where starting an application pool from a windows service (written in C#, set to "Automatic" startup) using WMI or ADSI immediately aft …
0
votes
1answer
118 views
LDAP vs. ADSI in manipulation of Active Directory Users
I have been requested to expose a web service for managing Active Directory Users via an intranet. I have been advised that LDAP is viewed as a security vulnerability and is not t …
0
votes
1answer
69 views
Well-supported Java ADSI wrapper library?
Does anyone know of a good wrapper for the Windows ADSI libraries for Java?
(I'm trying to avoid writing my own in JNA - and I'd like to use something standard.)
2
votes
2answers
60 views
Constructing Active Directory entry using PowerShell works in IIS 6 but not IIS 7
The following line of PowerShell works with IIS 6 installed:
$service = New-Object System.DirectoryServices.DirectoryEntry("IIS://localhost/W3SVC")
However, with IIS 7 it throws …
0
votes
2answers
38 views
ADSI Library/Control for .NET
Is there an ADSI Library out there for .NET/C#? I have been able to find bits and pieces of code to do some tasks but nothing comprehensive.
I'm looking for a library that I can …
0
votes
1answer
129 views
ADSI query to return an object’s parent
Does anyone know what property I can query for in an ADSI query that would return the object's parent OU? I know I can bind to the AD object and then use object.Parent to return i …
0
votes
1answer
140 views
Anyone know all Method Name of DirectoryEntry.Invoke
Anyone know all Method Name of DirectoryEntry.Invoke
2
votes
1answer
57 views
How do I programatically add a wildcard filter for IIS?
I'm going to use System.DirectoryServices to programatically add a wildcard filter for IIS (Version 5.0 and IIS 6.0).
Anyone have some food for thought? Thanks in advance!
0
votes
0answers
11 views
Searching global catalog
If I do a query (I plan to use SDS.P) against the global catalog, what should the starting path be so I can search the entire GC?
I want to enumerate all users in GC, for example. …
0
votes
0answers
9 views
Queries against GC, what should I watch out for?
I would like to take advantage of querying the global catalog instead of querying individual domains and following a referral chain.
Is a GC always available? If not, when is it …
0
votes
0answers
17 views
NetLocalGroupGetMembers vs AccountManagement (performance)
I find that NetLocalGroupGetMembers is many times faster than using the AccountManagement name space. How can I optimally rewrite the following code to approach the speed of accoun …
0
votes
1answer
67 views
Creating local users
I am having a bad directory day. :)
Could someone tell me what is wrong with this?
groupName = "Monkey";
...
using (DirectoryEntry directoryEntryObject = new DirectoryEntry("WinN …
1
vote
1answer
37 views
querying for local groups
I'd like to retrieve all local groups on my machine (Vista in a W2k3 domain).
If I run:
using (DirectoryEntry de = new DirectoryEntry("WinNT://" + Environment.MachineName + ",gro …
0
votes
0answers
91 views
How to remove IIS 6 web directory property using directoryentry in C#
Hello,
I want to delete particular property of IIS wen directory from Metabase.
Can any one plz help me, how can we do that with DirectoryEntry class in C#?
0
votes
2answers
149 views
Adding group to group using the PowerShell ADSI provider
I tried the following after creating the new group:
$adminGroup = [ADSI]"WinNT://./Administrators"
$group =[ADSI]"WinNT://./Test1"
#$adminGroup.Add($group) - This does not work
…
