Hello,
I came across this ADM template on the internet but it's not working. If anyone can give me some pointers that would be great. It bombs out at line 4 with this error "error 62 on line 4 - saying it cannot find the variable in the strings section, referencing !!category". Here is the template. Thanks in advance for the help.

CLASS MACHINE ;This modifies the HKEY_LOCAL_MACHINE portion of the registry
; the following command will disable firewall monitoring in Security Center
;
CATEGORY !!categoryname
CATEGORY !!subcategoryname

; the following command specifies the registry key to modify
KEYNAME "Software\Microsoft\Security Center"

; the following command specifies the name of the policy
; by using the variable "policyname"
POLICY !!policyname

; the following command specifies text on the Explain tab
EXPLAIN !!explaintext

; the following command creates a PART that contains a list box
PART !!labeltext DROPDOWNLIST REQUIRED

; the following statement specifies the registry value to modify
VALUENAME "FirewallDisableNotify"

; the following statement populates the drop down list
ITEMLIST
NAME !!DisableMonitoring VALUE NUMERIC 1 DEFAULT
NAME !!EnableMonitoring VALUE NUMERIC 0
END ITEMLIST
END PART
END POLICY
END CATEGORY; Security Center
END CATEGORY; Windows Components

; the following strings section assigns character strings
; to the variable names specified in the previous section
[strings]
categoryname="Windows Components"
subcategoryname="Security Center"
policyname="Disable Firewall Monitoring"
explaintext="This policy disables Firewall Monitoring in the Windows Security Center"
labeltext="Disable Firewall Monitoring"
DisableMonitoring="Disable Monitoring"
EnableMonitoring="Enable Monitoring"