Managing Favorites

By default a user can change the default folder settings for all new folders added. This can be disabled/enabled via configuration update process.

 

 

It is possible to disable the user from modifying the save properties for each individual location.

 

Example: Disable Settings Modification

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
    <manageFolders>
        <globalSettings>
        <enabledEdit action="delete"/>
        <enabledEdit action="insert" value="false"/>
        </globalSettings>
    </manageFolders>
</configuration> 

 

 

Example: Re-enable the ability to modify the save settings

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
    <manageFolders>
    <globalSettings>
        <enabledEdit action="delete"/>
    </globalSettings>
    </manageFolders>
</configuration 

 

 

Manage User Folders - Enable / Disable Folder Settings

Disable the ability to modify settings in the Manage Folders dialog, on a folder by folder basis. This will ensure that all new folders added will use the default folder settings.

 

Example: Disable Folder Settings

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
    <manageFolders>
        <manageFolderSettings action="delete"/>
        <manageFolderSettings action="insert" enableEdit="false"/>
    </manageFolders>
</configuration>