Editing Automated Task Module's Web.config File


Before configuring an automated task in the Ingeniux Automated Tasks application, edit the default values in the Web.config file's <appSettings> element.

To configure the sample Web.config file:

  1. In a file browser, navigate to [path-to-cms-site-instance]\App_Data\xml\Custom\automated\Standard_Operations.
  2. Open Web.config in a text editor and examine the <appSettings> element. Three of the key/value pairs are shown below:
    
    <appSettings>
        ...
        <add key="DoEmptyRecycleBin" value="true" />
        <add key="DoPublish" value="true" />
        <add key="PublishTargets" value="Production" />
    </appSettings>               
                
  3. Edit <appSettings> values according to your needs.
    In this sample <appSettings>, these key/value pairs configure the default automated tasks. For instance, when DoEmptyRecycleBin or DoPublish are set to true, those tasks execute. The value set to the PublishTargets key specifies the publishing target.

Next Steps: