Project

General

Profile

Improvement #10479

Updated by Navod Zoysa 10 months ago

*Description* 

 Need to support missing Form elements or UI elements parsed from ADMX files. Specially the list element which has different variations - https://learn.microsoft.com/en-us/windows/client-management/understanding-admx-backed-policies#list-element-and-its-variations elements. 

 EX: 
 search the below policy(policy name:AlwaysAutoRebootAtScheduledTime)on this link by searching "AlwaysAutoRebootAtScheduledTime" 
 https://learn.microsoft.com/en-us/windows/deployment/update/waas-restart 
 ADMX file: WindowsUpdate.admx 

 Policy: 

 <Policy name="AlwaysAutoRebootAtScheduledTime" area="" format="" defaultValue=""> 
    <LocURI></LocURI> 
 </Policy> 


 Also note that there are policies like this also(Policies that has multiple LocURIs) -> 
 Policy name: AutoUpdateCfg 
 ADMX file: WindowsUpdate.admx 

 Link:    https://learn.microsoft.com/en-us/windows/client-management/mdm/policy-csp-update#autorestartrequirednotificationdismissal 
 search the above link by "AutoUpdateCfg". this shows multiple LocURIs for this policy name. 

 policy: 
 <Policy name="AutoUpdateCfg" area="" format="" defaultValue=""> 
    <LocURI></LocURI> 
 </Policy> 


 Datasheet for more information(search any of the above policy names in data sheet): https://docs.google.com/spreadsheets/d/1KhJh8dyKJndjIqcwGcXIAeWf-iaaJ9ZPSVSFVY_YA8o/edit?usp=sharing

Back