Web Listing 1: Corporate WinZip Custom Settings Policy Template
; Corporate WinZip Custom Settings Policy Template

CLASS USER
CATEGORY !!PolicyHome
   CATEGORY !!AppName

      CATEGORY !!Paths ; Establish default paths.
       KEYNAME "Software\Nico Mak Computing\WinZip\directories"
        POLICY !!OpenLocation
        EXPLAIN !!OpenLocationHelp
            PART !!OpenPath DROPDOWNLIST REQUIRED
            VALUENAME "DefDir"
                ITEMLIST
                        NAME !!PathVal0 VALUE !!PathVal0
                        NAME !!PathVal1 VALUE !!PathVal1
                        NAME !!PathVal2 VALUE !!PathVal2
                        NAME !!PathVal3 VALUE !!PathVal3 DEFAULT
                END ITEMLIST
             END PART
        END POLICY

        POLICY !!SaveLocation
        EXPLAIN !!SaveLocationHelp
            PART !!SavePath EDITTEXT REQUIRED
              VALUENAME "ExtractTo"
              DEFAULT C:\Archives
            END PART
        END POLICY

        POLICY !!AddLocation
        EXPLAIN !!AddLocationHelp
            PART !!SavePath EDITTEXT REQUIRED
             VALUENAME "AddDir"
             DEFAULT C:\Logs
            END PART
        END POLICY
   END CATEGORY


   CATEGORY !!Programs ; Configure supporting applications used with WinZip.
       KEYNAME "Software\Nico Mak Computing\WinZip\Programs"

        POLICY !!Viewer
        EXPLAIN !!ViewerHelp
            PART !!ViewerProg EDITTEXT REQUIRED
             VALUENAME "viewer"
             DEFAULT C:\Windows\Notepad.exe
            END PART
        END POLICY

        POLICY !!LHAApp
        EXPLAIN !!LHAAppHelp
            PART !!LHAProg EDITTEXT REQUIRED
             VALUENAME "lha"
             DEFAULT "C:\Program Files\WinZip\Util\lha.exe"
            END PART
        END POLICY
   END CATEGORY


   CATEGORY !!Interface ; Configure elements of the user interface.
       KEYNAME "Software\Nico Mak Computing\WinZip\WinZip"

        POLICY !!ShowTips
        EXPLAIN !!ShowTipsHelp
            PART !!ShowTipsState CHECKBOX
             VALUENAME "ShowTips"
               VALUEON "1"
               VALUEOFF "0"
            END PART
        END POLICY

        POLICY !!Wizard
        EXPLAIN !!WizardHelp
            PART !!WizardState CHECKBOX
             VALUENAME "Wizard"
               VALUEON "1"
               VALUEOFF "0"
            END PART
        END POLICY

        POLICY !!Toolbar
        KEYNAME "Software\Nico Mak Computing\WinZip\Toolbar"
        EXPLAIN !!ToolbarHelp
            PART !!ToolbarOptions EDITTEXT
             VALUENAME "Buttons"
             DEFAULT "new,open,view,mail,2exe,help,exit"
            END PART
            PART !!ToolbarText TEXT
            END PART
            PART !!ToolList0 TEXT
            END PART
            PART !!ToolList1 TEXT
            END PART
            PART !!ToolList2 TEXT
            END PART
            PART !!ToolList3 TEXT
            END PART
        END POLICY

   END CATEGORY

 END CATEGORY
END CATEGORY



[strings]
PolicyHome="XYZ Corporation Custom Application Policies"
AppName="WinZip"
Paths="Default Paths for WinZip Operations"
Programs="Supporting Programs"
Interface="WinZip Interface"

OpenLocation="Default Path for Open Dialog"
OpenPath="Valid Default Paths for Open Dialog"
PathVal0="C:\"
PathVal1="C:\Zipped"
PathVal2="C:\Archives"
PathVal3="C:\Logs"

SaveLocation="Default Path for Save Dialog"
SavePath="Default Path for Save Dialog"

AddLocation="Default Path for Add Dialog"

Viewer="Default Text Viewer"
ViewerProg="Path and executable name for viewer application"

LHAApp="LHA Archive Utility"
LHAProg="Path and executable name for LHA application"

Showtips="WinZip Tips"
ShowTipsState="Enable WinZip Tips"

Wizard="WinZip Wizard"
WizardState="Enable the Wizard for WinZip Operations"

Toolbar="WinZip Toolbar Options"
ToolbarText="Type in valid tool names with a comma seperator and no spaces."
ToolList0="Valid tool names are shown below:"
ToolList1="new, open, favor, add, extra, view, check, wiz"
ToolList2="prop, print, mail ,hist ,delarc ,scan, 2exe"
ToolList3="uuenc, test, comment ,config ,help, exit, close, split"
ToolbarOptions="Buttons to Show"

OpenLocationHelp="This setting controls the path that WinZip will use by default when opening and saving an archive. Valid options are available via the Drop down list."

SaveLocationHelp="This setting controls the path that WinZip will use by default when extracting an archive. Accept the default value or enter a qualified path."

AddLocationHelp="This setting controls the default path that WinZip will use when selecting files to add to an archive. Accept the default or enter a qualified path."

ViewerHelp="This setting lets you provide a path and executable name for the program to be used as the default viewer when unarchiving text files."

LHAAppHelp="This setting lets you provide a path and executable name for the program to be used when working with LHA archives."

ShowTipsHelp="Check the box to display tips for the end user."

WizardHelp="Check the box to enable the Wizard interface for file archiving tasks."

ToolbarHelp="Type in the names of the tools you want to be available on the WinZip toolbar."