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.
<?xml version="1.0" encoding="UTF-8"?> <configuration> <manageFolders> <globalSettings> <enabledEdit action="delete"/> <enabledEdit action="insert" value="false"/> </globalSettings> </manageFolders> </configuration>
<?xml version="1.0" encoding="UTF-8"?> <configuration> <manageFolders> <globalSettings> <enabledEdit action="delete"/> </globalSettings> </manageFolders> </configuration
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.
<?xml version="1.0" encoding="UTF-8"?> <configuration> <manageFolders> <manageFolderSettings action="delete"/> <manageFolderSettings action="insert" enableEdit="false"/> </manageFolders> </configuration>