Hi guys...

i've got a little problem and hope you can help me.
i don't understand why my adm-template isn't working.

i got an error message which say that he can't find the string !!text in the "string section"

if i don't use the string section and write the caption after the POLICY-Tag my adm-template is working fine.

does anybody got an idea where i made a mistake?

thx!
WiZo

Code:
CLASS MACHINE

CATEGORY "MyOwnTemplates"
	CATEGORY "Cisco TSP"
		POLICY !!text
			KEYNAME "SOFTWARE\Cisco Systems, Inc.\Cisco TSP"
							
			PART "You can choose your setting here:" DROPDOWNLIST REQUIRED NOSORT
				VALUENAME "AutoUpdateSettings"
				ITEMLIST
					NAME "Never AutoUpdate" VALUE NUMERIC 0
					NAME "Always AutoUpdate" VALUE NUMERIC 1
					NAME "Always AutoUpdate (Ask Before Update)" VALUE NUMERIC 2147483649
					NAME "AutoUpdate on Incompatible QBEProtocolVersion" VALUE NUMERIC 2147483650
				END ITEMLIST
			END PART
		END POLICY
	END CATEGORY
END CATEGORY

[strings]
text="Configure AutoUpdateSettings"