AdmxPolicyManager 0.5.1

dotnet add package AdmxPolicyManager --version 0.5.1
NuGet\Install-Package AdmxPolicyManager -Version 0.5.1
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.5.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add AdmxPolicyManager --version 0.5.1
#r "nuget: AdmxPolicyManager, 0.5.1"
#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.5.1

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

AdmxPolicyManager

NuGet Version Build Status GitHub Sponsors

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

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 cancellationToken = default(CancellationToken);

var inputDirectoryPath = Path.Combine(
    Environment.GetFolderPath(Environment.SpecialFolder.ProgramFilesX86),
    @"Microsoft Group Policy\Windows 11 October 2023 Update (23H2)\PolicyDefinitions");

var catalog = default(PolicyDefinitionCatalogInfo);
if (Directory.Exists(inputDirectoryPath))
    catalog = await GroupPolicy.GetCatalogAsync(inputDirectoryPath, cancellationToken);
else
    catalog = await GroupPolicy.GetCatalogFromSystemAsync(cancellationToken);

using var context = new GroupPolicyContext();
await context.ExecuteAsync(() =>
{
    var subjectGuid = Guid.NewGuid();
    if (!catalog.TryGetPolicyDefinitionByPrefix("inetres", out var inetres) || inetres == null)
        return Task.CompletedTask;

    var ieFontSizePolicy = inetres.UserPolicies.FirstOrDefault(x => x.Name == "FontSize");
    if (ieFontSizePolicy == null)
        return Task.CompletedTask;

    Debug.WriteLine(GroupPolicy.GetGroupSecurityIdentifiersOfCurrentUser());
    Debug.WriteLine(GroupPolicy.IsGroupPolicyServiceRunning());
    Debug.WriteLine(GroupPolicy.IsGroupPolicyServiceConfiguredCorrectly());

    if (ieFontSizePolicy.Elements[0].Type == PolicyElementType.Enumeration)
    {
        Debug.WriteLine(((PolicyEnumerationElementInfo)ieFontSizePolicy.Elements[0]));
    }

    Debug.WriteLine(ieFontSizePolicy.GetElementValue("element_id", null));

    if (GroupPolicy.IsCurrentUserAdministrator())
    {
        var userOrGroupSid = default(string); // GroupPolicy.GetCurrentUserSecurityIdentifier();
        Debug.WriteLine(ieFontSizePolicy.ToString());
        Debug.WriteLine(ieFontSizePolicy.GetElementValue("FontSizeDefault", userOrGroupSid));
        Debug.WriteLine(ieFontSizePolicy.GetElementEnumIds("FontSizeDefault"));

        Debug.WriteLine("Changing IE Font Size Policy...");

        var modResults = ieFontSizePolicy.EnablePolicy(subjectGuid, userOrGroupSid);
        Debug.WriteLine($"Total {modResults.Count} registry item(s) have been processed.");

        Debug.WriteLine("Refreshing pending policies...");
        GroupPolicy.RefreshPolicy();

        Debug.WriteLine($"Current IE Font Size Policy: {ieFontSizePolicy.QueryPolicyStatus(userOrGroupSid)}");
    }
    else
        Debug.WriteLine("Cannot change the policy because you don't have Administrator privilege.");

    return Task.CompletedTask;
}, cancellationToken: cancellationToken);

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.5.1 27 6/25/2024
0.5.0 28 6/25/2024