Environs 2.0.17

dotnet add package Environs --version 2.0.17
NuGet\Install-Package Environs -Version 2.0.17
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Environs" Version="2.0.17" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Environs --version 2.0.17
#r "nuget: Environs, 2.0.17"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Environs as a Cake Addin
#addin nuget:?package=Environs&version=2.0.17

// Install Environs as a Cake Tool
#tool nuget:?package=Environs&version=2.0.17

Environs

Environs is a small C# library that provides a simplified interface for working with Windows Management Instrumentation (WMI), Lightweight Directory Access Protocol (LDAP), and related functionality. It aims to make it easier to perform common operations and tasks in these areas without the need for extensive knowledge of the underlying protocols and APIs.

Features

  • WMI: Simplifies querying and managing WMI classes, objects, and properties.
  • LDAP: Provides an intuitive interface for interacting with LDAP directories, searching for entries, and performing CRUD operations.
  • System Helper Classes Provides a simple to use class to manage printers, discovering IP addresses, and application discovery.

Installation

The library can be installed via NuGet Package Manager or by manually including the DLL in your project.

NuGet Package Manager

  1. Open the Console.
  2. Run the following command:
dotnet add package Environs

Usage

Below are some examples of how to use the Environs library in your C# code:

    // Example of using the Environment class to query WMI for printers on the local machine
    // using impersonation
    var ExampleObject = new Environment(options: new AuthenticationOptions { Impersonate = true });

    // Call the Execute method to get the results of the query
    IEnumerable<dynamic> Results = ExampleObject.Execute(CommonClasses.Printers, "root\\cimv2");

    // Iterate through the results and print them to the console
    foreach (dynamic Result in Results)
    {
        Console.WriteLine(Result.Name);
    }

Contributing

Contributions are welcome! If you find a bug, have a feature request, or want to contribute code, please open an issue or submit a pull request. Make sure to follow the guidelines outlined in the CONTRIBUTING file.

License

This library is licensed under the Apache 2 License.

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  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 was computed.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.0.17 78 4/10/2024
2.0.16 91 3/13/2024
2.0.15 94 3/4/2024
2.0.14 100 2/14/2024
2.0.13 127 1/10/2024
2.0.12 181 11/16/2023
2.0.11 93 11/6/2023
2.0.10 100 10/30/2023
2.0.9 122 9/18/2023
2.0.8 130 9/13/2023
2.0.7 115 9/4/2023
2.0.6 130 8/30/2023
2.0.5 137 8/28/2023
2.0.4 140 8/7/2023
2.0.3 155 7/9/2023
2.0.1 287 12/12/2022
1.0.24 416 6/6/2022
1.0.23 440 1/11/2022
1.0.22 401 1/6/2021
1.0.19 535 9/13/2020
1.0.18 511 12/23/2019
1.0.15 729 11/6/2018
1.0.14 930 5/22/2018
1.0.13 945 1/11/2018
1.0.11 932 8/18/2017