AdmxPolicyManager 0.6.4

dotnet add package AdmxPolicyManager --version 0.6.4                
NuGet\Install-Package AdmxPolicyManager -Version 0.6.4                
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="AdmxPolicyManager" Version="0.6.4" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add AdmxPolicyManager --version 0.6.4                
#r "nuget: AdmxPolicyManager, 0.6.4"                
#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 AdmxPolicyManager as a Cake Addin
#addin nuget:?package=AdmxPolicyManager&version=0.6.4

// Install AdmxPolicyManager as a Cake Tool
#tool nuget:?package=AdmxPolicyManager&version=0.6.4                

AdmxPolicyManager

NuGet Version Build Status GitHub Sponsors

Windows Policy Setting and Lookup Framework for use with the AdmxParser package

Breaking Changes

0.6.3 → 0.6.4

  • All of ~Core methods has been hided. These methods are not intended to be used by the user.

0.6.2 → 0.6.3

  • Set~~~Policies and Delete~~~Policies methods has been changed return type from collection to count integer. You can lookup the result in the request object.

v0.5.x → v0.6

The code has been completely redeveloped to use AdmxParser's interpreted model, and it has been completely redeveloped to ensure stable operation, and is equipped with code that is completely different from the existing 0.5.x version.

Minimum Requirements

  • Requires a platform with .NET Standard 2.0 or later, and Windows Vista+, Windows Server 2008+
    • Supported .NET Version: .NET Core 2.0+, .NET 5+, .NET Framework 4.6.1+, Mono 5.4+, UWP 10.0.16299+, Unity 2018.1+

How to use

The code below is a simple depiction of how to use it. We'll add more full code examples as they become available.

var admxDirectory = AdmxDirectory.GetSystemPolicyDefinitions();
await admxDirectory.LoadAsync();

var inetres = admxDirectory.GetAdmxContentByPrefix("inetres");
var fontSizePolicy = inetres.GetUserPolicy("FontSize");
fontSizePolicy.SetUserPolicy(true);

var elemIdList = fontSizePolicy.GetElementIds();
var elemId = elemIdList.FirstOrDefault(x => string.Equals("FontSizeDefault", x, StringComparison.OrdinalIgnoreCase));
var value = 2;
var queryResult = fontSizePolicy.GetUserElement(elemId);
Console.Out.WriteLine(queryResult.Value);

License

This library follows Apache-2.0 license. See LICENSE file for more information.

Product 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 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. 
.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 was computed.  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. 
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
0.6.4 78 8/9/2024
0.6.3 58 8/8/2024
0.6.2 64 8/8/2024
0.6.1 104 7/7/2024
0.6.0 77 7/4/2024
0.5.1 83 6/25/2024
0.5.0 83 6/25/2024