Hello,
I think you'll need to make these three changes:
First, you'll want to edit your recipe override to contain an empty
GROUP_TEMPLATE string:
<key>GROUP_TEMPLATE</key>
<string></string>
Next, you'll want to edit your recipe override to contain a custom
POLICY_TEMPLATE file:
<key>POLICY_TEMPLATE</key>
<string>PolicyTemplate-NoSmartGroup.xml</string>
Finally, duplicate the stock PolicyTemplate.xml file into a new file called PolicyTemplate-NoSmartGroup.xml, move it to your RecipeOverrides folder, and edit the scope from this:
<scope>
<!--Scope added by JSSImporter-->
</scope>
to this:
<scope/>
The effect of the above will be to create a policy with no scope at all. Of course you can choose to define a hard-coded scope if you prefer, as I do with my
Self
Service policies:
<scope>
<all_computers>true</all_computers>
</scope>
It's all possible with the magic of XML. :-)
Elliot