resources Element (.admx)
Applies To: Windows Server 2008
The resourceselement, in the .admx file, specifies the minimum revision level of the matching .adml file and optionally the fallback language to use.
Syntax
<resources minRequiredRevision="<MajorVersion.MinorVersion>"
fallbackCulture="<placeholder for culture/language name>"/>
Attributes
Attributes | Required | Description |
---|---|---|
Yes |
A minimum revision level of the matching .adml file. |
|
No |
Default language to use when the .adml file does not exist on the machine or ADMX central store for the required language. |
Child elements
There are no child elements associated with this element.
Remarks
The .admx file specifies all the language independent declarations for the ADMX files. The .admx file references language resources, such as UI display strings, from the .adml file. The minimum revision value guarantees the .admx file will not be referencing information that does not exist in the .adml file.
US English, en-us, is the default fallbackCulture when the fallbackCulture attribute is not declared in the resources element.
Examples
This XML fragment is an example of specifying a minimum required version of .9 for the .adml file with the default fallbackCulture, en-us.
<resources minRequiredRevision="0.9" />