I have a C# Windows program that is reading custom group policy settings, set by Administrator with ADMX. Currently, the app is directly reading the registry values that reflect the group policy settings.
Now, I want to make a pure-UWP version of this app (preferably without using Desktop Bridge), which should be installed directly from Microsoft Store. I already saw in another question that this kind of apps cannot access Windows' registry. However, specifically for Group Policy there might be a dedicated API - but it's not well documented (see here).
So - is there any way for a pure UWP app to read the group policy settings?