Tagged Questions
0
votes
0answers
41 views
Is Active Directory suitable for these requirements?
I'm about to build a new account management system for my company. The users is external customers accessing some of our web applications. Some users are internal operators accessing the same web ...
0
votes
1answer
315 views
Delay in Active Directory user creation when using System.DirectoryServices.AccountManagement
I am creating accounts and setting properties on them using System.DirectoryServices.AccountManagement in .NET 4.5. One of the requirements is that the group membership (including Primary Group) be ...
0
votes
1answer
64 views
An application using a windows account to access a directory
There is a directory on a file_server, which can be accessable from AD account -> TRacc,
I am tring to write an application which will be working on an application_server and using the TRacc account ...
0
votes
2answers
451 views
Implementing ActiveDirectory account lockout after n tries in WCF
I am developing a WCF service which can be consumed by mobile applications to authenticate users against the corporate extranet ActiveDirectory. I am using a customized version of this implementation ...
2
votes
2answers
4k views
Powershell find users expiring in 7 days
I am trying to run a powershell script that queries for accounts that expire within 7 days, I currently have
$a = (get-date).AddDays(7) ; Search-ADAccount -AccountExpiring
-TimeSpan "7" | ...
2
votes
2answers
2k views
userAccountControl in Active Directory
I want to know the current value of the userAccountControl and determine which stage it is in
Ref: http://support.microsoft.com/kb/305144/en-us
According to the above documentation, it should ...
0
votes
1answer
182 views
Why does my console application freezes when using Win32_UserAccount class
When i add this code to my console application freezes.
List<string> User = new List<string>();
objectSearcher = new ManagementClass("Win32_UserAccount");
foreach (var item in ...
1
vote
2answers
323 views
Difference between real user and system user accounts
When I get UserPrincipal/DirectoryEntry records for a machine or Active Directory domain, is there a way to differentiate system accounts from real users?
For example, jsmith is a real user, while ...
1
vote
1answer
291 views
Expiration of Active Directory accounts
Requesting their support if I can guide in order to obtain a list of users that is soon to expire your account on my active directory.
1
vote
1answer
1k views
Creating a user account in AD with JNDI and minimum password age
So I want to create a user account in Windows 2003 with Active Directory utilizing JNDI. I am following the following example: http://forums.sun.com/thread.jspa?threadID=582103 (first post). The ...
2
votes
2answers
225 views
Webservice that handles 1 million user accounts
Imagine you're writing a web app that will have 1 million users (they all grow that big, right!)
How would you handle user accounts? I can imagine a few scenarios:
Roll your own (database tables, ...
0
votes
1answer
439 views
What is the C# analog of this VBScript code that checks the Active Directory password expiration?
I have the following VBScript script that checks the password expiration of an Active Directory user account. Could someone please help me convert this code to C#? Thanks a lot.
Const ...
2
votes
2answers
11k views
Min Security Rights to Preform LDAP Queries in Active Directory
Our company is trying to implement a few single sign-on applications using Active Directory (Windows Server 2003) and LDAP. I would like to lock down the account used to make these LDAP queries as ...