System.DirectoryServices.AccountManagement
9.0.0-preview.5.24306.7
Prefix Reserved
See the version list below for details.
dotnet add package System.DirectoryServices.AccountManagement --version 9.0.0-preview.5.24306.7
NuGet\Install-Package System.DirectoryServices.AccountManagement -Version 9.0.0-preview.5.24306.7
<PackageReference Include="System.DirectoryServices.AccountManagement" Version="9.0.0-preview.5.24306.7" />
paket add System.DirectoryServices.AccountManagement --version 9.0.0-preview.5.24306.7
#r "nuget: System.DirectoryServices.AccountManagement, 9.0.0-preview.5.24306.7"
// Install System.DirectoryServices.AccountManagement as a Cake Addin #addin nuget:?package=System.DirectoryServices.AccountManagement&version=9.0.0-preview.5.24306.7&prerelease // Install System.DirectoryServices.AccountManagement as a Cake Tool #tool nuget:?package=System.DirectoryServices.AccountManagement&version=9.0.0-preview.5.24306.7&prerelease
About
Provides uniform access and manipulation of security principals across multiple principal stores. The principal objects in the Account Management API include computer, group and user objects. The principal stores includes:
- Active Directory Domain Services (AD DS)
- Active Directory Lightweight Directory Services (AD LDS)
- Machine SAM (MSAM).
Key Features
- Basic directory operations such as creating and updating security principals. The application requires less knowledge of the underlying stores to perform these operations.
- Applications can extend the object model to include new types of directory objects.
- Account management tasks, such as enabling and disabling a user account.
- Cross-store support allows group objects in the Active Directory Domain Services (AD DS), Active Directory Lightweight Directory Services (AD LDS), and Machine SAM (MSAM) databases to contain members from different types of stores.
- Query by example searching, available on the PrincipalSearcher class, enables applications to set properties on a principal object and search the selected store for other objects that contain matching property values.
- Enhanced search on computer, user and group principal objects enables applications to search the selected store for matching principal objects.
- Recursive search, available on the group principal object, enables applications to search a group recursively and return only principal objects that are leaf nodes.
- Credential validation against the Machine SAM, AD DS, and AD LS stores.
- Connections speeds are increased by using the Fast Concurrent Bind (FSB) feature when available. Connection caching decreases the number of ports used.
How to Use
// Create the principal context for the usr object.
PrincipalContext ctx = new PrincipalContext(ContextType.Domain, "fabrikam.com", "CN=Users,DC=fabrikam,DC=com", "administrator", "securelyStoredPassword");
// Create the principal user object from the context.
UserPrincipal usr = new UserPrincipal(ctx);
usr.AdvancedSearchFilter.LastLogonTime(DateTime.Now, MatchType.LessThan);
usr.AdvancedSearchFilter.LastLogonTime(DateTime.Yesterday, MatchType.GreaterThan);
// Create a PrincipalSearcher object.
PrincipalSearcher ps = new PrincipalSearcher(usr);
PrincipalSearchResult<Principal> fr = ps.FindAll();
foreach (UserPrincipal u in results)
{
Console.WriteLine(u.Name);
}
Main Types
The main types provided by this library are:
System.DirectoryServices.AccountManagement.PrincipalContext
System.DirectoryServices.AccountManagement.PrincipalSearcher
System.DirectoryServices.AccountManagement.Principal
and its subclasses:System.DirectoryServices.AccountManagement.UserPrincipal
,System.DirectoryServices.AccountManagement.GroupPrincipal
andSystem.DirectoryServices.AccountManagement.ComputerPrincipal
Additional Documentation
- Conceptual documentations:
- API documentation
Related Packages
Feedback & Contributing
System.DirectoryServices.AccountManagement is released as open source under the MIT license. Bug reports and contributions are welcome at the GitHub repository.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 is compatible. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 is compatible. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- System.Security.Principal.Windows (>= 5.0.0)
-
net8.0
- System.Configuration.ConfigurationManager (>= 9.0.0-preview.5.24306.7)
- System.DirectoryServices (>= 9.0.0-preview.5.24306.7)
- System.DirectoryServices.Protocols (>= 9.0.0-preview.5.24306.7)
-
net9.0
- System.Configuration.ConfigurationManager (>= 9.0.0-preview.5.24306.7)
- System.DirectoryServices (>= 9.0.0-preview.5.24306.7)
- System.DirectoryServices.Protocols (>= 9.0.0-preview.5.24306.7)
NuGet packages (127)
Showing the top 5 NuGet packages that depend on System.DirectoryServices.AccountManagement:
Package | Downloads |
---|---|
Microsoft.Windows.Compatibility
This Windows Compatibility Pack provides access to APIs that were previously available only for .NET Framework. It can be used from both .NET as well as .NET Standard. |
|
Abp.Zero.Ldap
Abp.Zero.Ldap |
|
Shesha.Ldap
Package Description |
|
SuperOffice.NetServer.Core
SuperOffice NetServer Core is SuperOffice's data access technology for new applications. This is for onsite installations with the same version. This also works with SuperOffice Online. |
|
ZzzLab.Core
Package Description |
GitHub repositories (20)
Showing the top 5 popular GitHub repositories that depend on System.DirectoryServices.AccountManagement:
Repository | Stars |
---|---|
aspnetboilerplate/aspnetboilerplate
ASP.NET Boilerplate - Web Application Framework
|
|
opserver/Opserver
Stack Exchange's Monitoring System
|
|
x360ce/x360ce
Primary repository for the x360ce library, front-end and tools.
|
|
HotCakeX/Harden-Windows-Security
Harden Windows Safely, Securely using Official Supported Microsoft methods and proper explanation | Always up-to-date and works with the latest build of Windows | Provides tools and Guides for Personal, Enterprise, Government and Military security levels | Read The Rationale https://github.com/HotCakeX/Harden-Windows-Security/blob/main/Rationale.md
|
|
ariacom/Seal-Report
Database Reporting Tool and Tasks (.Net)
|