Tagged Questions
The adsi tag has no wiki summary.
11
votes
4answers
768 views
Memory Leak when using DirectorySearcher.FindAll()
I have a long running process that needs to do a lot of queries on Active Directory quite often. For this purpose I have been using the System.DirectoryServices namespace, using the DirectorySearcher ...
8
votes
1answer
171 views
How do I query effective permissions on an Active Directory Object?
I'm trying to programmatically determine whether the current user has certain permissions on a given Active Directory object (specifically in this case, I'm trying to determine whether the user has ...
5
votes
5answers
6k views
User.Identity.Name
I've seen this question posted similarly in the past, I was hoping someone can point me in the right direction, the User.Identity.Name class returns the domain login.
Which class exposes the actual ...
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 ...
3
votes
1answer
634 views
How can I optimize my PowerShell - LDAP Query?
Hey guys, this one is out there for the PS gurus. I've created a script that reads from a CSV (or other dataset, but not posting that side) and creates users in my AD environment.
Basically, whatever ...
3
votes
2answers
730 views
Which is better for IIS administration in ASP.Net : WMI or ADSI or Managed API? and what's the difference?
I am working on Configuring and manipulating and controlling IIS 6.0 and later versions using ASP.Net based web application. I am considering WMI, ADSI, Managed API as my options.
I have a target ...
3
votes
6answers
1k views
'working, please wait' screen with thread?
Perhaps, it is very easy for you, but I am hard working on a project (for educational purposes) that is querying adsi with TADSISearch component, for several days. I'm trying to show a 'Working, ...
3
votes
2answers
844 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 the following error ...
3
votes
1answer
5k views
Setting “Log on as a service” and “Allow logon locally” with ADSI
I am trying to create a powershell script to automate user creation which is working great using ADSI. However I need to set the following properties and I am not sure how (or if ADSI can even do ...
3
votes
2answers
1k views
SQL ADSI Active Directory Create New Accounts
I have an ADSI connection in my SQL Server (2005) and I'm able to query it using openquery. Is there any way to create new accounts (and/or) edit existing ones?
Also, I'd like to have to use ...
3
votes
2answers
9k views
Create local user with PowerShell (Windows Vista)
I've installed PowerShell recently and one of the first things I started looking for was how to create a new user. After looking for some time I still haven't found this.
I have a little experience in ...
2
votes
1answer
183 views
List all stopped application pools in an IIS6 farm
I'd like to print only those IIS6 pools that are stopped or stopping (have an AppPoolState of 3 or 4). If everything else is fine (all started), just print out "OK". I'm not sure for a simple way to ...
2
votes
1answer
241 views
ADsDSOObject & .NET return different values (types) for objectSID
I have a user created stored procedure in a database server that queries active directory for user information and inserts the data into a table. We wish to remove the operation from the database ...
2
votes
2answers
489 views
Powershell script returns exception when using ADSI
I get exceptions when executing a Power shell script (v1.0) on Windows Server 2008 (32 bit).
It uses ADSI for searching a virtual directory before its deletion.
I get the following exception:
...
2
votes
0answers
298 views
List LDAP trusted domains with Java
We're migrating from C to Java, and we need to query Active-Dirctory Domain to get the list of trusted domains. Until now, we've done it with ADSI.
And a second question. Is the concept of "trusted ...
2
votes
1answer
242 views
How can I use Perl to test for Win32 group membership when group contains nested groups?
I'm trying to use Perl to determine if a Windows users is a member of a Windows group, if the the group contains nested groups.
I've tried using Win32::NetAdmin::GroupIsMember(), but it only works if ...
2
votes
2answers
2k views
Active Directory user password expiration date .net /OU Group Policy
I have searched the site for information and found this:
ASP.NET C# Active Directory - See how long before a user's password expires
which explains how to get the value of when the password expires ...
2
votes
1answer
167 views
What is the difference between Microsoft.Web.Management and System.DirectoryServices in .Net 3.5?
I want to control, configure and manipulate IIS 6.0 and later versions via ASP.Net web application using WMI and .Net.
Can i use a mix of Microsoft.Web.Management and System.DirectoryServices?
Is ...
2
votes
1answer
2k views
VBScript Error when calling GetObject(“WinNT://JohnDoe,User”)
I have code that hasn't been touched in over a year, but the DCs were upgraded from 2008 to 2008 R2. The AD folks claim it’s not the DC upgrade but the issue started promptly after that went in.
...
2
votes
1answer
394 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!
2
votes
2answers
2k views
In active directory, what is mailNickname used for?
In active directory, should mailNickname always equal samaccountname? Or, should it always be equal to the mail property (minus the "@domain")?
My reason for asking is that we have recently changed ...
2
votes
1answer
3k views
Query AD from sql server 2005
I am attempting to query AD via ldap from within SQL Server 2005 but get the following error:
Msg 7321, Level 16, State 2, Line 1
An error occurred while preparing the query "SELECT NAME,MAIL FROM ...
2
votes
1answer
1k views
How can I determine if an AD group contains a given DirectoryEntry from another (trusted) domain?
I am trying to beef up my code that determines whether a user is a member of a given AD group. It essentially works except when the member of the group happens to be from another (trusted) domain ...
2
votes
1answer
405 views
How can I obtain the OU of the logged in user in C#?
I'm looking for a method to obtain the current logged in user's full Active Direcory LDAP path. e.g.
LDAP://CN=john.smith,OU=UK,OU=Sales,DC=Company,DC=local
1
vote
0answers
295 views
“Network path not found” when using WinNT provider and Delphi to query ADSI
I am querying ADSI using the WINNT provider with code similar to this :
var
User : IADSUser;
begin
User := GetObject('WinNT://'+domainname+'/'+username + ', user') as IADSUser;
...
...
...
1
vote
1answer
434 views
Convert ADSI objects to Powershell objects
I have some code to get a list of IIS6 sites through ADSI:
([adsi]"IIS://localhost/W3SVC").psbase.children | select servercomment, serverstate | Where-Object {$_.serverstate -ne $null}
servercomment ...
1
vote
1answer
280 views
VBScript returning 0 rows when ADSIEdit returns correct number of rows
I've been banging my head against this for the last two days or so, and without much success - regardless what I try.
When I run a query to retrieve share volumes which ends with a specific ending, I ...
1
vote
1answer
113 views
Does anyone know a good practice to use when developing for the system.directory services class?
I'm trying to create a data access later using System.DirectoryServices. I'd like to use the MVC 2 framework and have all my views be mostly strongly-typed. Does anyone know any good way to this?
...
1
vote
3answers
1k views
Trying to create a new Active Directory user, Invoke(“SetPassword”,pwd) throws “The RPC server is unavailable”
I'm trying to create a new user on my development active directory server using .NET System.DirectoryServices namespace.
I try using the following code:
DirectoryEntry dirEntry = new ...
1
vote
2answers
246 views
Setting the LastPasswordSet date for a user in Active Directory
I want to set the LastPasswordSet attribute of a user in Microsoft Active Directory.
The .NET UserPrincipal API exposes the LastPasswordSet property as readonly.
Is there a way around this, to set ...
1
vote
1answer
352 views
Active directory logonCount is 0, though the user has logged in
For a user in active directory, the properties hold values for lastlogontime & lastlogontimestamp but the logoncount is 0. I am having only one domain controller in that domain.
I found from ...
1
vote
2answers
4k views
Updating Active Directory user properties in Active Directory using Powershell
In a Windows Server 2003 R2 environment, using Powershell v2.0, how would one duplicate the functionality of Set-QADUser to update user properties in Active Directory, like their phone number and ...
1
vote
2answers
483 views
Unable to use IIS ADSI Provider after IIS installation if ADsOpenObject was called before install
My .Net application actively uses Active Directory and installs IIS if its absent.
If IIS wasn't installed on application startup and any of Active Directory-related methods were called then IIS ADSI ...
1
vote
1answer
569 views
ADSI Query against IIS does not agree with IIS Manager, on Vista
Using Vista...
I have a script that uses ADSI to set ScriptMaps on an IIS Website. It's javascript, run within cscript.exe, and the code looks something like this:
var web = ...
1
vote
2answers
815 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 to be used.
Given ...
1
vote
1answer
400 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("WinNT://" + ...
1
vote
1answer
114 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 + ",group", null, null, ...
1
vote
2answers
1k 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
Any idea what is ...
1
vote
1answer
967 views
Programatically removing etag suffix (change number) from the metabase IIS6
IIS 6.0 generates eTag values in the format of "hash:changenumber". The changenumber goes up every time IIS resets, so your eTag is only valid for the lifetime of your IIS process. Restart, number ...
1
vote
1answer
373 views
ChangePassword on a user object does not lock account if not successful
I have an ASP.Net application (on Win2K) that is using Windows authentication and impersonation. We are using the following code to change password:
Dim objDE As DirectoryEntry
'...
...
0
votes
2answers
87 views
seeking example using ADSI API to programmatically create a Windows Group
Seeking example using ADSI API to programmatically create a Windows Group. AD is Windows Active Directory http://en.wikipedia.org/wiki/Active_Directory
'SI' maybe Service Interface?
Anyway, this ...
0
votes
0answers
51 views
Can not do makepy on ADsNameSpaces
I am trying to build some scripting around AD using ADSI. Examples suggest that the following invocation is used:
>>> ad_obj=win32com.client.GetObject("LDAP://RootDSE")
>>> ...
0
votes
1answer
90 views
Using ADSI To Open A Newly Created AD LDS Instance
I created a new instance using Active Directory Lightweight Directory Services Setup Wizard with the distinguished name of CN=MyName,DC=MyComponent successfully. I see the instance as a running ...
0
votes
1answer
42 views
Algo to enumerate nested groups across domains?
I am going to implement following algorithm for enumerating across domain direct and nested groups of a user. Can you please review and give your feedback?
Can you please review this algorithm?
...
0
votes
0answers
116 views
ADSI-WMI : Remote Query IIS App .Net Version
I'm trying to grab the .net version in use by an application in IIS 5/6/7 on remote machines. I've so far been using ADSI (I believe, i'm very new to the windows scripting scene and most of what I ...
0
votes
1answer
97 views
How to enumerate nested groups across domains?
I am using MemberOf Attribute to enumerate nested groups. I have 2 domains, 2 groups and one user. Please see below for configuration:
Domain DOMAIN-A has domain global group GROUP-A and USER-A.
...
0
votes
2answers
231 views
DNS name from NetBIOS name - API function
Is there any API function that can resolve netbios name of a user or group directory object.
I need output in following formats:
NameFullyQualifiedDN - example: CN=John ...
0
votes
0answers
48 views
Reading the applyed group policy programmatically on windows 2000
is there a way to get the applyed group policy settings for w2000 systems?
By this I mean items like password password complexity, service Ticket life times?
Normally one of the WMI's ...
0
votes
1answer
153 views
Weird sAMAccountName when creating user account using DirectoryServices
my C# code uses the DirectoryServices namespace to create domain user accounts.
DirectoryEntry deRoot = new DirectoryEntry("LDAP://OU=MYOU,DC=DOMAIN,DC=LOCAL");
directoryEntry = ...
0
votes
1answer
202 views
LookupAccountSID is returning incorrect domain name
MSDN says: LookupAccountSid function returns the name of the first domain on which SID is found.
If a User is migrated to domain B from domain A and we query the old SID of user by using ...