Fix for uploading Brave ADMX templates to InTune

@John19 When trying to upload ADMX templates to Microsoft Endpoint Manager (InTune) I got the following error:

ADMX file referenced not found NamespaceMissing:BraveSoftware.Policies. Please upload it first.

This is because the brave.admx file references a bravesoftware.admx file that isn’t provided in the download package. Since Brave doesn’t seem to provide this necessary file (not sure why) you can create and upload it yourself. You’ll need to create the following two files:

bravesoftware.admx
bravesoftware.adml

The contents of bravesoftware.admx:

<?xml version="1.0" ?>
<policyDefinitions revision="1.0" schemaVersion="1.0">
  <policyNamespaces>
    <target namespace="BraveSoftware.Policies" prefix="Brave"/>
  </policyNamespaces>
  <resources minRequiredRevision="1.0" />
  <categories>
    <category displayName="$(string.bravesoftware)" name="Cat_Brave"/>
  </categories>
</policyDefinitions>

The contents of bravesoftware.adml (for en-US):

<?xml version="1.0" ?>
<policyDefinitionResources revision="1.0" schemaVersion="1.0">
  <displayName/>
  <description/>
  <resources>
    <stringTable>
      <string id="bravesoftware">Brave</string>
    </stringTable>
  </resources>
</policyDefinitionResources>

Create and upload these two files first, then the brave.admx and brave.adml upload will be successful!

Do you think you can just rename those files before uploading to save a step.

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.