Custom Administrative Template Help

  • Thread starter Thread starter joedonato
  • Start date Start date
J

joedonato

Hello,

I have created a custom adm template to create a registry dword and
assign a value. Unfortuantely when I add the template to my policy, it
shows nothing under the the container.

What am I missing?

Thanks in advance.

;March 24, 2006
;This is to disable the popunder prompt when using sharepoint
;and saving attachments

CLASS MACHINE

CATEGORY !!categoryname
KEYNAME "SOFTWARE\Classes\Word.Document.8"
POLICY !!policyname
EXPLAIN !!explaintext
PART "Pop Under Dialog" DROPDOWNLIST
VALUENAME "EditFlags"
ITEMLIST
NAME !!value_on VALUE Numeric 65536
NAME !!value_off VALUE Numeric 0
END ITEMLIST
END PART
END POLICY
END CATEGORY

[strings]
categoryname="Sharepoint Confirm Save File"
policyname="Word_2003_Confirm_Open"
explaintext="PopUp_Dialog_OnOff"
value_on="No Save File Confirmation"
value_off="Save File Confirmation"
 
Back
Top